From 00c40f5d9e46641f894fafa418ec24555fbd43a3 Mon Sep 17 00:00:00 2001 From: Akkadius Date: Sun, 1 Sep 2019 23:41:26 -0500 Subject: [PATCH] Remove errant debug calls --- common/timeoutmgr.cpp | 9 --------- zone/spawngroup.cpp | 3 --- 2 files changed, 12 deletions(-) diff --git a/common/timeoutmgr.cpp b/common/timeoutmgr.cpp index 71e639f31..f8ee62869 100644 --- a/common/timeoutmgr.cpp +++ b/common/timeoutmgr.cpp @@ -42,9 +42,6 @@ void TimeoutManager::CheckTimeouts() { for(; cur != end; ++cur) { Timeoutable *it = *cur; if(it->next_check.Check()) { -#ifdef TIMEOUT_DEBUG - Log(Logs::General, Logs::None,, "Checking timeout on 0x%x\n", it); -#endif it->CheckTimeout(); } } @@ -57,15 +54,9 @@ void TimeoutManager::AddMember(Timeoutable *who) { DeleteMember(who); //just in case... prolly not needed. members.push_back(who); -#ifdef TIMEOUT_DEBUG - Log(Logs::General, Logs::None,, "Adding timeoutable 0x%x\n", who); -#endif } void TimeoutManager::DeleteMember(Timeoutable *who) { -#ifdef TIMEOUT_DEBUG - Log(Logs::General, Logs::None,, "Removing timeoutable 0x%x\n", who); -#endif std::vector::iterator cur,end; cur = members.begin(); end = members.end(); diff --git a/zone/spawngroup.cpp b/zone/spawngroup.cpp index 41cd14060..d50a8513b 100644 --- a/zone/spawngroup.cpp +++ b/zone/spawngroup.cpp @@ -66,9 +66,6 @@ SpawnGroup::SpawnGroup( uint32 SpawnGroup::GetNPCType() { -#if EQDEBUG >= 10 - Log(Logs::General, Logs::None, "SpawnGroup[%08x]::GetNPCType()", (uint32) this); -#endif int npcType = 0; int totalchance = 0;