From ffb4a3e020d1060fb5209d2d303f9f0b58e2e63a Mon Sep 17 00:00:00 2001 From: Aussiemon Date: Sun, 8 Jan 2023 03:39:05 -0700 Subject: [PATCH] Set default error log level to All --- dmf/scripts/mods/dmf/modules/core/logging.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dmf/scripts/mods/dmf/modules/core/logging.lua b/dmf/scripts/mods/dmf/modules/core/logging.lua index 6b3e099..ec97b65 100644 --- a/dmf/scripts/mods/dmf/modules/core/logging.lua +++ b/dmf/scripts/mods/dmf/modules/core/logging.lua @@ -204,7 +204,7 @@ function dmf.load_logging_settings() _logging_settings = { notification = dmf:get("logging_mode") == "custom" and dmf:get("output_mode_notification") or 5, echo = dmf:get("logging_mode") == "custom" and dmf:get("output_mode_echo") or 4, - error = dmf:get("logging_mode") == "custom" and dmf:get("output_mode_error") or 4, + error = dmf:get("logging_mode") == "custom" and dmf:get("output_mode_error") or 7, warning = dmf:get("logging_mode") == "custom" and dmf:get("output_mode_warning") or 4, info = dmf:get("logging_mode") == "custom" and dmf:get("output_mode_info") or 1, debug = dmf:get("logging_mode") == "custom" and dmf:get("output_mode_debug") or 0,