Set default error log level to All

This commit is contained in:
Aussiemon 2023-01-08 03:39:05 -07:00
parent e97c394006
commit ffb4a3e020

View file

@ -204,7 +204,7 @@ function dmf.load_logging_settings()
_logging_settings = { _logging_settings = {
notification = dmf:get("logging_mode") == "custom" and dmf:get("output_mode_notification") or 5, 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, 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, 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, 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, debug = dmf:get("logging_mode") == "custom" and dmf:get("output_mode_debug") or 0,