sessionmanager: Rename filters_initialize->initialize_filters
[prosody.git] / core / loggingmanager.lua
index a088a3f3d63616a2a29c6375786133384724aa0c..3ec696d50049d1c67f17bbff30f8ecab3afda2dc 100644 (file)
@@ -33,7 +33,7 @@ _G.log = logger.init("general");
 module "loggingmanager"
 
 -- The log config used if none specified in the config file
-local default_logging = { { to = "console" , levels = { min = (debug_mode and "debug" ) } } };
+local default_logging = { { to = "console" , levels = { min = (debug_mode and "debug") or "info" } } };
 local default_file_logging = { { to = "file", levels = { min = (debug_mode and "debug") or "info" }, timestamps = true } };
 local default_timestamp = "%b %d %H:%M:%S";
 -- The actual config loggingmanager is using