From f31b9ad98bbed676d4f9b2e8e65b7b2a65fca6ce Mon Sep 17 00:00:00 2001 From: SecretsOTheP Date: Tue, 19 Nov 2013 09:57:52 -0500 Subject: [PATCH] Made the variable for disabling the logging system always default to ON instead of OFF. Changed the wording so it's less confusing. This means that the debug logging information will not display at all by default, but the GM command logging will display enabled. If you need to diagnose the logs, simply turn them on at the expense of added CPU/Disk I/O --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 66b0a9162..9566cbf64 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -117,7 +117,7 @@ SET(EQEMU_DEBUG_LEVEL 5 CACHE STRING "EQEmu debug level: OPTION(EQEMU_ENABLE_BOTS "Enable Bots" OFF) #Disable entire _mlog system (excludes trade/command logs) -OPTION(DISABLE_LOGSYS "Enable Logging INI System" OFF) +OPTION(DISABLE_LOGSYS "Disable Logging INI System" ON) #Enable GM Command log system OPTION(COMMANDS_LOGGING "Enable GM Command logs" ON)