mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.startup: Always reload logging after config (fixes #1284)
This chancged in 6e24a69b03af likely because of confusion about the `reopen-log-files` event which was fired but never hooked.
This commit is contained in:
parent
9f19a48ee2
commit
ce17a974fc
1 changed files with 3 additions and 0 deletions
|
@ -87,6 +87,9 @@ function startup.init_logging()
|
|||
-- Initialize logging
|
||||
local loggingmanager = require "core.loggingmanager"
|
||||
loggingmanager.reload_logging();
|
||||
prosody.events.add_handler("config-reloaded", function ()
|
||||
prosody.events.fire_event("reopen-log-files");
|
||||
end);
|
||||
prosody.events.add_handler("reopen-log-files", function ()
|
||||
loggingmanager.reload_logging();
|
||||
prosody.events.fire_event("logging-reloaded");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue