[7240] Fix logfile spam from AchievementMgr.

Log AchievementMgr::SendAchievementEarned only in debug.

Signed-off-by: ApoC <apoc@nymfe.net>
This commit is contained in:
ApoC 2009-02-07 14:47:21 +01:00
parent 5e2553ff7e
commit c9eacd7a23
2 changed files with 2 additions and 2 deletions

View file

@ -274,7 +274,7 @@ void AchievementMgr::LoadFromDB(QueryResult *achievementResult, QueryResult *cri
void AchievementMgr::SendAchievementEarned(AchievementEntry const* achievement)
{
sLog.outString("AchievementMgr::SendAchievementEarned(%u)", achievement->ID);
sLog.outDebug("AchievementMgr::SendAchievementEarned(%u)", achievement->ID);
const char *msg = "|Hplayer:$N|h[$N]|h has earned the achievement $a!";
if(Guild* guild = objmgr.GetGuildById(GetPlayer()->GetGuildId()))