diff options
author | Waqas Hussain <waqas20@gmail.com> | 2017-09-10 13:05:45 -0400 |
---|---|---|
committer | Waqas Hussain <waqas20@gmail.com> | 2017-09-10 13:05:45 -0400 |
commit | 00cb31f022a3325e4e182b666f85a6b4e05b7a7e (patch) | |
tree | e88b65d8d20941d8135c35f87a04a82ca644d1d6 /plugins | |
parent | 347f3ab6a3e1f7f64a9289ec08c081f79bef9087 (diff) | |
download | prosody-00cb31f022a3325e4e182b666f85a6b4e05b7a7e.tar.gz prosody-00cb31f022a3325e4e182b666f85a6b4e05b7a7e.zip |
loggingmanager, mod_posix: Replace the old inconsistent log formatting with the new util.format
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/mod_posix.lua | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/plugins/mod_posix.lua b/plugins/mod_posix.lua index 32fc27bc..b2984add 100644 --- a/plugins/mod_posix.lua +++ b/plugins/mod_posix.lua @@ -20,6 +20,7 @@ if not have_signal then module:log("warn", "Couldn't load signal library, won't respond to SIGTERM"); end +local format = require "util.format"; local lfs = require "lfs"; local stat = lfs.attributes; @@ -118,13 +119,9 @@ function syslog_sink_maker(config) -- luacheck: ignore 212/config pposix.syslog_open("prosody", module:get_option_string("syslog_facility")); syslog_opened = true; end - local syslog, format = pposix.syslog_log, string.format; + local syslog = pposix.syslog_log; return function (name, level, message, ...) - if ... then - syslog(level, name, format(message, ...)); - else - syslog(level, name, message); - end + syslog(level, name, format(message, ...)); end; end require "core.loggingmanager".register_sink_type("syslog", syslog_sink_maker); |