Debugging adjustments [skip ci]

This commit is contained in:
Akkadius 2019-09-05 02:01:52 -05:00
parent c53c769a7c
commit afa6358838

View File

@ -1458,11 +1458,12 @@ void Zone::StartShutdownTimer(uint32 set_time) {
if (set_time == (RuleI(Zone, AutoShutdownDelay))) {
set_time = static_cast<uint32>(database.getZoneShutDownDelay(GetZoneID(), GetInstanceVersion()));
}
autoshutdown_timer.SetTimer(set_time);
LogInfo("Zone::StartShutdownTimer set to {}", set_time);
LogDebug("Zone::StartShutdownTimer set to {}", set_time);
}
LogInfo("Zone::StartShutdownTimer trigger - set_time: [{}] remaining_time: [{}] diff: [{}]", set_time, autoshutdown_timer.GetRemainingTime(), (set_time - autoshutdown_timer.GetRemainingTime()));
LogDebug("Zone::StartShutdownTimer trigger - set_time: [{}] remaining_time: [{}] diff: [{}]", set_time, autoshutdown_timer.GetRemainingTime(), (set_time - autoshutdown_timer.GetRemainingTime()));
}
bool Zone::Depop(bool StartSpawnTimer) {