mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
Monster whitespace commit (beware the whitespace monster).
This commit is contained in:
parent
85b44a1dfd
commit
b7e51a203d
42 changed files with 145 additions and 147 deletions
|
@ -111,7 +111,7 @@ local function write_pidfile()
|
|||
end
|
||||
end
|
||||
|
||||
local syslog_opened
|
||||
local syslog_opened;
|
||||
function syslog_sink_maker(config)
|
||||
if not syslog_opened then
|
||||
pposix.syslog_open("prosody");
|
||||
|
@ -119,12 +119,12 @@ function syslog_sink_maker(config)
|
|||
end
|
||||
local syslog, format = pposix.syslog_log, string.format;
|
||||
return function (name, level, message, ...)
|
||||
if ... then
|
||||
syslog(level, format(message, ...));
|
||||
else
|
||||
syslog(level, message);
|
||||
end
|
||||
end;
|
||||
if ... then
|
||||
syslog(level, format(message, ...));
|
||||
else
|
||||
syslog(level, message);
|
||||
end
|
||||
end;
|
||||
end
|
||||
require "core.loggingmanager".register_sink_type("syslog", syslog_sink_maker);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue