mirror of
https://github.com/EQEmu/Server.git
synced 2026-05-17 07:18:37 +00:00
Remove Save from LogTypes
This commit is contained in:
@@ -69,7 +69,6 @@ static const char* TypeNames[EQEmuLogSys::MaxLogID] = {
|
||||
"Quest",
|
||||
"Command",
|
||||
"Crash",
|
||||
"Save",
|
||||
};
|
||||
|
||||
/* If you add to this, make sure you update LogCategory in eqemu_logsys.h */
|
||||
@@ -155,6 +154,7 @@ void EQEmuLogSys::LogDebug(DebugLevel debug_level, std::string message, ...)
|
||||
va_start(args, message);
|
||||
std::string output_message = vStringFormat(message.c_str(), args);
|
||||
va_end(args);
|
||||
|
||||
EQEmuLogSys::Log(EQEmuLogSys::LogType::Debug, output_message);
|
||||
}
|
||||
|
||||
@@ -192,7 +192,7 @@ void EQEmuLogSys::Log(uint16 log_type, const std::string message, ...)
|
||||
va_end(args);
|
||||
|
||||
if (EQEmuLogSys::log_platform == EQEmuExePlatform::ExePlatformZone){
|
||||
on_log_gmsay_hook(output_message);
|
||||
on_log_gmsay_hook(log_type, output_message);
|
||||
}
|
||||
|
||||
EQEmuLogSys::ConsoleMessage(log_type, output_message);
|
||||
|
||||
Reference in New Issue
Block a user