From 50ccb52465d822a3e7aedad3a678459c067d9f8a Mon Sep 17 00:00:00 2001 From: Akkadius Date: Sat, 24 Jan 2015 04:27:32 -0600 Subject: [PATCH] Adjust logging in command_time --- zone/command.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/zone/command.cpp b/zone/command.cpp index 60f3ba8cc..1eda93e49 100644 --- a/zone/command.cpp +++ b/zone/command.cpp @@ -4372,6 +4372,7 @@ void command_time(Client *c, const Seperator *sep) } c->Message(13, "Setting world time to %s:%i (Timezone: 0)...", sep->arg[1], minutes); zone->SetTime(atoi(sep->arg[1])+1, minutes); + Log.Out(Logs::General, Logs::Zone_Server, "%s :: Setting world time to %s:%i (Timezone: 0)...", c->GetCleanName(), sep->arg[1], minutes); } else { c->Message(13, "To set the Time: #time HH [MM]"); @@ -4386,9 +4387,7 @@ void command_time(Client *c, const Seperator *sep) zone->zone_time.getEQTimeZoneMin() ); c->Message(13, "It is now %s.", timeMessage); -#if EQDEBUG >= 11 - Log.LogDebug(Logs::General,"Recieved timeMessage:%s", timeMessage); -#endif + Log.Out(Logs::General, Logs::Zone_Server, "Current Time is: %s", timeMessage); } }