Software /
code /
prosody
Changeset
10108:659ffa03f1e7
util.startup: Remove tostring call from logging
Taken care of by loggingmanager now
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Tue, 30 Jul 2019 02:23:06 +0200 |
parents | 10107:1dbabbebb53c |
children | 10109:c59d384b0959 |
files | util/startup.lua |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- 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", {