diff options
author | raczman <none@none> | 2009-01-15 22:01:47 -0500 |
---|---|---|
committer | raczman <none@none> | 2009-01-15 22:01:47 -0500 |
commit | 4ce857b400770023afb45ffdab09a3a1a5db83e0 (patch) | |
tree | 4a21c8c42089d8a1e78d9fad3ec06dd09241beb0 /src/game/World.cpp | |
parent | a48321f34805153d1dfe462e3950c63299ea4184 (diff) |
Cleanup of log output
--HG--
branch : trunk
Diffstat (limited to 'src/game/World.cpp')
-rw-r--r-- | src/game/World.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/game/World.cpp b/src/game/World.cpp index 99ca7c185f8..80f995834a9 100644 --- a/src/game/World.cpp +++ b/src/game/World.cpp @@ -1308,7 +1308,7 @@ void World::SetInitialWorldSettings() exit(1); ///- Initialize game time and timers - sLog.outString( "DEBUG:: Initialize game time and timers" ); + sLog.outDebug( "DEBUG:: Initialize game time and timers" ); m_gameTime = time(NULL); m_startTime=m_gameTime; @@ -1453,7 +1453,7 @@ void World::Update(time_t diff) { if(m_updateTimeSum > m_configs[CONFIG_INTERVAL_LOG_UPDATE]) { - sLog.outString("Update time diff: %u. Players online: %u.", m_updateTimeSum / m_updateTimeCount, GetActiveSessionCount()); + sLog.outBasic("Update time diff: %u. Players online: %u.", m_updateTimeSum / m_updateTimeCount, GetActiveSessionCount()); m_updateTimeSum = m_updateTime; m_updateTimeCount = 1; } |