util.startup: Remove tostring call from logging
authorKim Alvefur <zash@zash.se>
Tue, 30 Jul 2019 02:23:06 +0200
changeset 10112 659ffa03f1e7
parent 10111 1dbabbebb53c
child 10113 c59d384b0959
util.startup: Remove tostring call from logging Taken care of by loggingmanager now
util/startup.lua
--- a/util/startup.lua	Tue Jul 30 02:20:27 2019 +0200
+++ b/util/startup.lua	Tue Jul 30 02:23:06 2019 +0200
@@ -251,9 +251,9 @@
 		local ok, level, err = config.load(prosody.config_file);
 		if not ok then
 			if level == "parser" then
-				log("error", "There was an error parsing the configuration file: %s", tostring(err));
+				log("error", "There was an error parsing the configuration file: %s", err);
 			elseif level == "file" then
-				log("error", "Couldn't read the config file when trying to reload: %s", tostring(err));
+				log("error", "Couldn't read the config file when trying to reload: %s", err);
 			end
 		else
 			prosody.events.fire_event("config-reloaded", {