diff options
| author | megamage <none@none> | 2009-01-08 10:12:12 -0600 |
|---|---|---|
| committer | megamage <none@none> | 2009-01-08 10:12:12 -0600 |
| commit | 70e1f12b16f78e17017f9fbe3014fbd2df4d6465 (patch) | |
| tree | e5724f6c4e1674ca529d5241648eb85cfb5688b6 /src/game/World.cpp | |
| parent | 3fc9224338b6b33817b611efafdec5f65dff7824 (diff) | |
*Change some log level.
--HG--
branch : trunk
Diffstat (limited to 'src/game/World.cpp')
| -rw-r--r-- | src/game/World.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
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; } |
