From 9faa2117d5854e6b97ac3066de1b18360539ce67 Mon Sep 17 00:00:00 2001 From: Akkadius Date: Tue, 20 Jan 2015 02:59:06 -0600 Subject: [PATCH] Add uint16 debug_level to ProcessLogWrite --- common/eqemu_logsys.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common/eqemu_logsys.cpp b/common/eqemu_logsys.cpp index 0ddaa9061..4ac5a359d 100644 --- a/common/eqemu_logsys.cpp +++ b/common/eqemu_logsys.cpp @@ -116,7 +116,7 @@ void EQEmuLogSys::ProcessGMSay(uint16 log_category, std::string message) } } -void EQEmuLogSys::ProcessLogWrite(uint16 log_category, std::string message) +void EQEmuLogSys::ProcessLogWrite(uint16 debug_level, uint16 log_category, std::string message) { /* Check if category enabled for process */ if (log_settings[log_category].log_to_file == 0) @@ -230,7 +230,7 @@ void EQEmuLogSys::Out(Logs::DebugLevel debug_level, uint16 log_category, std::st EQEmuLogSys::ProcessConsoleMessage(0, log_category, output_debug_message); EQEmuLogSys::ProcessGMSay(log_category, output_debug_message); - EQEmuLogSys::ProcessLogWrite(log_category, output_debug_message); + EQEmuLogSys::ProcessLogWrite(0, log_category, output_debug_message); } void EQEmuLogSys::SetCurrentTimeStamp(char* time_stamp){