Logging update.

This commit is contained in:
Lucca Faria Ferri 2023-02-12 11:25:59 -08:00
parent 4474ee1889
commit e76fcb31ec
2 changed files with 2 additions and 2 deletions

View File

@ -152,7 +152,7 @@ namespace DiIiS_NA.GameServer.GSSystem.AISystem.Brains
}
else
{
Logger.Trace("MoveToTargetWithPathfindAction to target");
Logger.Trace("$[underline white]$MoveToTargetWithPathfindAction$[/]$ to target");
CurrentAction = new MoveToTargetWithPathfindAction(
Body,
//(

View File

@ -213,7 +213,7 @@ namespace DiIiS_NA.GameServer.GSSystem.AISystem.Brains
{
if (Body.SNO.IsWoodwraithOrWasp())
{
Logger.Trace($"{GetType().Name} {nameof(MoveToPointAction)} to target [{_target.Position}]");
Logger.Trace($"{GetType().Name} $[underline white]${nameof(MoveToPointAction)}$[/]$ to target $[white]${_target.ActorType}$[/]$ [{_target.Position}]");
CurrentAction = new MoveToPointAction(
Body, _target.Position
);