diff options
author | Kim Alvefur <zash@zash.se> | 2018-04-05 17:53:51 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2018-04-05 17:53:51 +0200 |
commit | b0be3682afbeaa928a1fa760c39342902cbc15ca (patch) | |
tree | 6c3687a05a423518c86f5c43cfcfb2a76355230a /util | |
parent | d723c0752ed3c9e0a6d81acd06db1723a91903a2 (diff) | |
download | prosody-b0be3682afbeaa928a1fa760c39342902cbc15ca.tar.gz prosody-b0be3682afbeaa928a1fa760c39342902cbc15ca.zip |
util.startup: Set up event hooks for reloading logging here instead of in loggingmanager to simplify startup dependencies
Diffstat (limited to 'util')
-rw-r--r-- | util/startup.lua | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/util/startup.lua b/util/startup.lua index 0d7cb08a..0b62249b 100644 --- a/util/startup.lua +++ b/util/startup.lua @@ -84,7 +84,12 @@ end function startup.init_logging() -- Initialize logging - require "core.loggingmanager" + local loggingmanager = require "core.loggingmanager" + loggingmanager.reload_logging(); + prosody.events.add_handler("reopen-log-files", function () + loggingmanager.reload_logging(); + prosody.events.fire_event("logging-reloaded"); + end); end function startup.log_dependency_warnings() |