aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2019-01-06 12:17:00 +0100
committerKim Alvefur <zash@zash.se>2019-01-06 12:17:00 +0100
commit2c8b0b80608ccea6b7cbd157ccc400338c8e5f38 (patch)
tree42ad08705d2ea96cc9acda97c58b625fdc7097d9 /plugins
parente2369a0bf6d28e192a4e791ebad9c13d1da969da (diff)
downloadprosody-2c8b0b80608ccea6b7cbd157ccc400338c8e5f38.tar.gz
prosody-2c8b0b80608ccea6b7cbd157ccc400338c8e5f38.zip
mod_posix: Don't reload logging twice
See 18eca6afb367
Diffstat (limited to 'plugins')
-rw-r--r--plugins/mod_posix.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_posix.lua b/plugins/mod_posix.lua
index 825d3be0..23df4d23 100644
--- a/plugins/mod_posix.lua
+++ b/plugins/mod_posix.lua
@@ -172,7 +172,7 @@ if have_signal then
signal.signal("SIGHUP", function ()
module:log("info", "Received SIGHUP");
prosody.reload_config();
- prosody.reopen_logfiles();
+ -- this also reloads logging
end);
signal.signal("SIGINT", function ()