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 } } }