mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-22 02:04:52 +01:00
*Minor cleanup in Log::outDB - by XTZGZoReX.
--HG-- branch : trunk
This commit is contained in:
@@ -353,14 +353,16 @@ std::string Log::GetTimestampStr()
|
||||
|
||||
void Log::outDB( LogTypes type, const char * str )
|
||||
{
|
||||
if(!str || std::string(str).empty() || type >= MAX_LOG_TYPES)
|
||||
return;
|
||||
if (!str || type >= MAX_LOG_TYPES)
|
||||
return;
|
||||
|
||||
std::string new_str(str);
|
||||
if (new_str.empty())
|
||||
return;
|
||||
LoginDatabase.escape_string(new_str);
|
||||
|
||||
LoginDatabase.PExecute("INSERT INTO logs (time, realm, type, string) "
|
||||
"VALUES (" UI64FMTD ", %u, %u, '%s');", uint64(time(0)), realm, (uint32)type, new_str.c_str());
|
||||
"VALUES (" UI64FMTD ", %u, %u, '%s');", uint64(time(0)), realm, type, new_str.c_str());
|
||||
}
|
||||
|
||||
void Log::outString( const char * str, ... )
|
||||
|
||||
Reference in New Issue
Block a user