diff options
author | Kim Alvefur <zash@zash.se> | 2012-11-10 23:39:22 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2012-11-10 23:39:22 +0100 |
commit | 11dbc0b49af73253a2cd76baaff24561c0cfbb0b (patch) | |
tree | 9ab7954e9c92cb944b0961ed00fba1de8f0506fd | |
parent | 9a7f5206098e4af016abdea336b908214fc76255 (diff) | |
download | prosody-11dbc0b49af73253a2cd76baaff24561c0cfbb0b.tar.gz prosody-11dbc0b49af73253a2cd76baaff24561c0cfbb0b.zip |
mod_posix: Remove console and stdout logging sinks before daemonizing
-rw-r--r-- | plugins/mod_posix.lua | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/plugins/mod_posix.lua b/plugins/mod_posix.lua index db594ccc..ed64fc34 100644 --- a/plugins/mod_posix.lua +++ b/plugins/mod_posix.lua @@ -136,8 +136,16 @@ if daemonize == nil then end end +local function remove_log_sinks() + local lm = require "core.loggingmanager"; + lm.register_sink_type("console", nil); + lm.register_sink_type("stdout", nil); + lm.reload_logging(); +end + if daemonize then local function daemonize_server() + remove_log_sinks(); local ok, ret = pposix.daemonize(); if not ok then module:log("error", "Failed to daemonize: %s", ret); |