From b84f29e3e0aec70b76fdcddea04fcbd8161fd8aa Mon Sep 17 00:00:00 2001 From: cdozdil Date: Sun, 18 Feb 2024 16:31:49 +0300 Subject: [PATCH] changed logging default --- CyberXeSS/Config.cpp | 2 +- nvngx.ini | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CyberXeSS/Config.cpp b/CyberXeSS/Config.cpp index 3049e4a5..285fa5db 100644 --- a/CyberXeSS/Config.cpp +++ b/CyberXeSS/Config.cpp @@ -25,7 +25,7 @@ void Config::Reload() LoggingEnabled = readBool("Log", "LoggingEnabled"); - if (LoggingEnabled.value_or(false)) + if (LoggingEnabled.value_or(true)) { LogLevel = readInt("Log", "LogLevel"); diff --git a/nvngx.ini b/nvngx.ini index 108585d9..d9247f5f 100644 --- a/nvngx.ini +++ b/nvngx.ini @@ -1,6 +1,6 @@ ; all settings can be set to auto to have the mod control the values [Log] -;Logging of libxess messages - Default false +;Logging of libxess messages - Default (auto) is true LoggingEnabled=auto ;Log file, if undefined log_xess_xxxx.log file in current folder