[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.
This commit is contained in:
Alex King 2024-02-27 21:35:51 -05:00 committed by GitHub
parent 89be55254e
commit c001060429
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -752,11 +752,7 @@ void QuestManager::stoptimer(const std::string& timer_name)
); );
for (auto e = QTimerList.begin(); e != QTimerList.end(); ++e) { 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) { if (e->mob && e->mob == owner && e->name == timer_name) {
LogInfo("Matched [{}] Timer [{}]", e->name, timer_name);
if (has_stop_event) { if (has_stop_event) {
if (owner->IsClient()) { if (owner->IsClient()) {
parse->EventPlayer(EVENT_TIMER_STOP, owner->CastToClient(), timer_name, 0); parse->EventPlayer(EVENT_TIMER_STOP, owner->CastToClient(), timer_name, 0);