From 72fb75a6a28f95a781020159eab95dfdcb4824cf Mon Sep 17 00:00:00 2001 From: nytmyr <53322305+nytmyr@users.noreply.github.com> Date: Sun, 26 Jan 2025 19:43:47 -0600 Subject: [PATCH] Remove Log TestDebug --- common/eqemu_logsys.h | 4 +--- common/eqemu_logsys_log_aliases.h | 10 ---------- 2 files changed, 1 insertion(+), 13 deletions(-) diff --git a/common/eqemu_logsys.h b/common/eqemu_logsys.h index 9178aaa3a..b03050a7b 100644 --- a/common/eqemu_logsys.h +++ b/common/eqemu_logsys.h @@ -148,7 +148,6 @@ namespace Logs { BotSettings, BotSpellChecks, BotSpellTypeChecks, - TestDebug, MaxCategoryID /* Don't Remove this */ }; @@ -255,8 +254,7 @@ namespace Logs { "KSM", // Kernel Samepage Merging "Bot Settings", "Bot Spell Checks", - "Bot Spell Type Checks", - "Test Debug" + "Bot Spell Type Checks" }; } diff --git a/common/eqemu_logsys_log_aliases.h b/common/eqemu_logsys_log_aliases.h index 2b3e1c83a..331d22a6c 100644 --- a/common/eqemu_logsys_log_aliases.h +++ b/common/eqemu_logsys_log_aliases.h @@ -904,16 +904,6 @@ OutF(LogSys, Logs::Detail, Logs::BotSpellTypeChecks, __FILE__, __func__, __LINE__, message, ##__VA_ARGS__);\ } while (0) -#define LogTestDebug(message, ...) do {\ - if (LogSys.IsLogEnabled(Logs::General, Logs::TestDebug))\ - OutF(LogSys, Logs::General, Logs::TestDebug, __FILE__, __func__, __LINE__, message, ##__VA_ARGS__);\ -} while (0) - -#define LogTestDebugDetail(message, ...) do {\ - if (LogSys.IsLogEnabled(Logs::Detail, Logs::TestDebug))\ - OutF(LogSys, Logs::Detail, Logs::TestDebug, __FILE__, __func__, __LINE__, message, ##__VA_ARGS__);\ -} while (0) - #define Log(debug_level, log_category, message, ...) do {\ if (LogSys.IsLogEnabled(debug_level, log_category))\ LogSys.Out(debug_level, log_category, __FILE__, __func__, __LINE__, message, ##__VA_ARGS__);\