From 935c9c42904ff789a07ea0b9efdc861890c10000 Mon Sep 17 00:00:00 2001 From: Unknown Date: Thu, 8 Mar 2018 18:05:07 +0300 Subject: [PATCH] Changing default debug output mode --- vmf_source/scripts/mods/vmf/modules/core/core_functions.lua | 2 +- vmf_source/scripts/mods/vmf/modules/vmf_options.lua | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/vmf_source/scripts/mods/vmf/modules/core/core_functions.lua b/vmf_source/scripts/mods/vmf/modules/core/core_functions.lua index 74ebb1a..43b5471 100644 --- a/vmf_source/scripts/mods/vmf/modules/core/core_functions.lua +++ b/vmf_source/scripts/mods/vmf/modules/core/core_functions.lua @@ -185,7 +185,7 @@ vmf.load_logging_settings = function () error = vmf:get("logging_mode") == "custom" and vmf:get("output_mode_error") or 3, warning = vmf:get("logging_mode") == "custom" and vmf:get("output_mode_warning") or 3, info = vmf:get("logging_mode") == "custom" and vmf:get("output_mode_info") or 1, - debug = vmf:get("logging_mode") == "custom" and vmf:get("output_mode_debug") or 2, + debug = vmf:get("logging_mode") == "custom" and vmf:get("output_mode_debug") or 0, } for method_name, logging_mode in pairs(_LOGGING_SETTINGS) do diff --git a/vmf_source/scripts/mods/vmf/modules/vmf_options.lua b/vmf_source/scripts/mods/vmf/modules/vmf_options.lua index c21fc30..6ec82ef 100644 --- a/vmf_source/scripts/mods/vmf/modules/vmf_options.lua +++ b/vmf_source/scripts/mods/vmf/modules/vmf_options.lua @@ -145,7 +145,7 @@ local options_widgets = { {text = vmf:localize("output_chat"), value = 2}, {text = vmf:localize("output_log_and_chat"), value = 3}, }, - ["default_value"] = 2 + ["default_value"] = 0 } } }