1
0

Fixed log files' timestamps

Also made Release mode log less technical information about the world
storage threads.
This commit is contained in:
Tiger Wang
2015-06-14 11:23:14 +01:00
parent d961693020
commit 882f7c70c0
3 changed files with 12 additions and 12 deletions

View File

@@ -84,7 +84,7 @@ void cWorldStorage::Stop(void)
void cWorldStorage::WaitForFinish(void)
{
LOG("Waiting for the world storage to finish saving");
LOGD("Waiting for the world storage to finish saving");
{
m_LoadQueue.Clear();
@@ -97,7 +97,7 @@ void cWorldStorage::WaitForFinish(void)
m_ShouldTerminate = true;
m_Event.Set(); // Wake up the thread if waiting
super::Wait();
LOG("World storage thread finished");
LOGD("World storage thread finished");
}