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 /core/loggingmanager.lua | |
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 'core/loggingmanager.lua')
-rw-r--r-- | core/loggingmanager.lua | 13 |
1 files changed, 2 insertions, 11 deletions
diff --git a/core/loggingmanager.lua b/core/loggingmanager.lua index 14305588..1b888a7e 100644 --- a/core/loggingmanager.lua +++ b/core/loggingmanager.lua @@ -7,7 +7,7 @@ -- -- luacheck: globals log prosody.log -local format = string.format; +local format = require "util.format"; local setmetatable, rawset, pairs, ipairs, type = setmetatable, rawset, pairs, ipairs, type; local stdout = io.stdout; @@ -195,22 +195,13 @@ local function log_to_file(sink_config, logfile) local sourcewidth = sink_config.source_width; return function (name, level, message, ...) - local n = select('#', ...); - if n ~= 0 then - local arg = { ... }; - for i = 1, n do - arg[i] = tostring(arg[i]); - end - message = format(message, unpack(arg, 1, n)); - end - if sourcewidth then sourcewidth = math_max(#name+2, sourcewidth); name = name .. rep(" ", sourcewidth-#name); else name = name .. "\t"; end - write(logfile, timestamps and os_date(timestamps) or "", name, level, "\t", message, "\n"); + write(logfile, timestamps and os_date(timestamps) or "", name, level, "\t", format(message, ...), "\n"); end end log_sink_types.file = log_to_file; |