Core/Logging: Delete player filename will now use guid_name format like old log system. (was set to account_name by error)

This commit is contained in:
Spp
2012-09-01 21:18:01 +02:00
parent 5cafe0ca01
commit 7811e9100c

View File

@@ -446,7 +446,7 @@ void Log::outCharDump(char const* str, uint32 accountId, uint32 guid, char const
LogMessage* msg = new LogMessage(LOG_LEVEL_INFO, LOG_FILTER_PLAYER_DUMP, ss.str());
ss.clear();
ss << accountId << '_' << name;
ss << guid << '_' << name;
msg->param1 = ss.str();