mod_posix: Support syslog_facility config option

This commit is contained in:
Matthew Wild 2012-04-26 18:14:42 +01:00
parent 43ea784252
commit 0502e8bcec

View file

@ -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;