From 79918ebaba635348cc950f03ec898eab3b5161ae Mon Sep 17 00:00:00 2001 From: JJ <3617814+joligario@users.noreply.github.com> Date: Fri, 29 Sep 2023 11:54:52 -0400 Subject: [PATCH] [Logs] Change pathing log messages from Error to Pathing. (#3604) Change pathing log messages from `Error` to `Pathing`. --- zone/waypoints.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/zone/waypoints.cpp b/zone/waypoints.cpp index bbb9ed0a3..f4d0c80b5 100644 --- a/zone/waypoints.cpp +++ b/zone/waypoints.cpp @@ -157,7 +157,7 @@ void NPC::ResumeWandering() } else { - LogError("NPC not paused - can't resume wandering: [{}]", (unsigned long)GetNPCTypeID()); + LogPathing("NPC not paused - can't resume wandering: [{}]", (unsigned long)GetNPCTypeID()); return; } @@ -173,7 +173,7 @@ void NPC::ResumeWandering() } else { - LogError("NPC not on grid - can't resume wandering: [{}]", (unsigned long)GetNPCTypeID()); + LogPathing("NPC not on grid - can't resume wandering: [{}]", (unsigned long)GetNPCTypeID()); } return; } @@ -195,7 +195,7 @@ void NPC::PauseWandering(int pausetime) } } else { - LogError("NPC not on grid - can't pause wandering: [{}]", (unsigned long)GetNPCTypeID()); + LogPathing("NPC not on grid - can't pause wandering: [{}]", (unsigned long)GetNPCTypeID()); } return; }