diff options
author | Kim Alvefur <zash@zash.se> | 2013-03-23 02:33:15 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2013-03-23 02:33:15 +0100 |
commit | 75e786c1f0ca40d9244324f30d9ef662e7e24974 (patch) | |
tree | ecc07df37df1db9a79a86f936ed683a9654861f4 /core/loggingmanager.lua | |
parent | 0019ee9380c3129056cd4521018a888b69068ca0 (diff) | |
download | prosody-75e786c1f0ca40d9244324f30d9ef662e7e24974.tar.gz prosody-75e786c1f0ca40d9244324f30d9ef662e7e24974.zip |
core.*: Complete removal of all traces of the "core" section and section-related code.
Diffstat (limited to 'core/loggingmanager.lua')
-rw-r--r-- | core/loggingmanager.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/loggingmanager.lua b/core/loggingmanager.lua index c3fc83e4..c69dede8 100644 --- a/core/loggingmanager.lua +++ b/core/loggingmanager.lua @@ -146,7 +146,7 @@ function reload_logging() logger.reset(); - local debug_mode = config.get("*", "core", "debug"); + local debug_mode = config.get("*", "debug"); default_logging = { { to = "console" , levels = { min = (debug_mode and "debug") or "info" } } }; default_file_logging = { @@ -154,7 +154,7 @@ function reload_logging() }; default_timestamp = "%b %d %H:%M:%S"; - logging_config = config.get("*", "core", "log") or default_logging; + logging_config = config.get("*", "log") or default_logging; for name, sink_maker in pairs(old_sink_types) do |