From c001060429f5367b4c1d3ceacf5125833d8fe6ec Mon Sep 17 00:00:00 2001 From: Alex King <89047260+Kinglykrab@users.noreply.github.com> Date: Tue, 27 Feb 2024 21:35:51 -0500 Subject: [PATCH] [Cleanup] Remove unnecessary stoptimer logs (#4128) # Notes - These logs were for testing and are unnecessary. - They cause a lot of spam for servers using `Info` logs. --- zone/questmgr.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/zone/questmgr.cpp b/zone/questmgr.cpp index cf023ec77..ec3a6b938 100644 --- a/zone/questmgr.cpp +++ b/zone/questmgr.cpp @@ -752,11 +752,7 @@ void QuestManager::stoptimer(const std::string& timer_name) ); for (auto e = QTimerList.begin(); e != QTimerList.end(); ++e) { - LogInfo("Current [{}] Timer [{}]", e->name, timer_name); - if (e->mob && e->mob == owner && e->name == timer_name) { - LogInfo("Matched [{}] Timer [{}]", e->name, timer_name); - if (has_stop_event) { if (owner->IsClient()) { parse->EventPlayer(EVENT_TIMER_STOP, owner->CastToClient(), timer_name, 0);