From 70e1f12b16f78e17017f9fbe3014fbd2df4d6465 Mon Sep 17 00:00:00 2001 From: megamage Date: Thu, 8 Jan 2009 10:12:12 -0600 Subject: *Change some log level. --HG-- branch : trunk --- src/game/World.cpp | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'src/game/World.cpp') diff --git a/src/game/World.cpp b/src/game/World.cpp index 749b9dc8826..5abdb17d6cf 100644 --- a/src/game/World.cpp +++ b/src/game/World.cpp @@ -1428,17 +1428,15 @@ void World::RecordTimeDiff(const char *text, ...) return; } - sLog.outDebugInLine("Difftime "); + uint32 thisTime = getMSTime(); va_list ap; char str [256]; va_start(ap, text); vsnprintf(str,256,text, ap ); va_end(ap); - sLog.outDebugInLine(str); + sLog.outDetail("Difftime %s: %u.", str, getMSTimeDiff(m_currentTime, thisTime)); - uint32 thisTime = getMSTime(); - sLog.outDebug(": %u.", getMSTimeDiff(m_currentTime, thisTime)); m_currentTime = thisTime; } -- cgit v1.2.3