From 6abd0110a473a0f96bb8d7df433cdb1a966f8a4d Mon Sep 17 00:00:00 2001 From: Waqas Hussain Date: Thu, 13 Jan 2011 02:31:10 +0500 Subject: loggingmanager: Re-read 'debug' option on reload. --- core/loggingmanager.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'core/loggingmanager.lua') diff --git a/core/loggingmanager.lua b/core/loggingmanager.lua index 0e0ae862..460afeaf 100644 --- a/core/loggingmanager.lua +++ b/core/loggingmanager.lua @@ -27,8 +27,6 @@ local config = require "core.configmanager"; local logger = require "util.logger"; local prosody = prosody; -local debug_mode = config.get("*", "core", "debug"); - _G.log = logger.init("general"); module "loggingmanager" @@ -166,6 +164,8 @@ function reload_logging() logger.reset(); + local debug_mode = config.get("*", "core", "debug"); + default_logging = { { to = "console" , levels = { min = (debug_mode and "debug") or "info" } } }; default_file_logging = { { to = "file", levels = { min = (debug_mode and "debug") or "info" }, timestamps = true } -- cgit v1.2.3