Remove Save from LogTypes

This commit is contained in:
Akkadius
2015-01-12 20:58:17 -06:00
parent 9d355f0f99
commit b1939aaa3e
3 changed files with 5 additions and 6 deletions
+2 -2
View File
@@ -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);