mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
mod_posix: Support syslog_facility config option
This commit is contained in:
parent
43ea784252
commit
0502e8bcec
1 changed files with 1 additions and 1 deletions
|
@ -112,7 +112,7 @@ end
|
|||
local syslog_opened;
|
||||
function syslog_sink_maker(config)
|
||||
if not syslog_opened then
|
||||
pposix.syslog_open("prosody");
|
||||
pposix.syslog_open("prosody", module:get_option_string("syslog_facility"));
|
||||
syslog_opened = true;
|
||||
end
|
||||
local syslog, format = pposix.syslog_log, string.format;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue