This commit is contained in:
Uleat
2017-04-01 17:40:27 -04:00
+2 -2
View File
@@ -138,10 +138,10 @@ static const char* LogCategoryName[LogCategory::MaxCategoryID] = {
};
}
#define Log(debug_level, log_category, message, ...){\
#define Log(debug_level, log_category, message, ...) do {\
if (LogSys.log_settings[log_category].is_category_enabled == 1)\
LogSys.Out(debug_level, log_category, message, ##__VA_ARGS__);\
}
} while (0)
class EQEmuLogSys {
public: