Diff

plugins/mod_posix.lua @ 8226:3463d82276de

loggingmanager, mod_posix: Replace the old inconsistent log formatting with the new util.format
author Waqas Hussain <waqas20@gmail.com>
date Sun, 10 Sep 2017 13:05:45 -0400
parent 8167:39188851811c
child 8228:cda9db4b881d
line wrap: on
line diff
--- a/plugins/mod_posix.lua	Sun Sep 10 12:42:05 2017 -0400
+++ b/plugins/mod_posix.lua	Sun Sep 10 13:05:45 2017 -0400
@@ -20,6 +20,7 @@
 	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 @@
 		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);