core.stanza_router: Remove tostring call from logging

Taken care of by loggingmanager now
This commit is contained in:
Kim Alvefur 2019-07-30 02:18:59 +02:00
parent 7bce7c9fbe
commit d7770bba84

View file

@ -199,7 +199,7 @@ function core_route_stanza(origin, stanza)
else
local host_session = hosts[from_host];
if not host_session then
log("error", "No hosts[from_host] (please report): %s", tostring(stanza));
log("error", "No hosts[from_host] (please report): %s", stanza);
else
local xmlns = stanza.attr.xmlns;
stanza.attr.xmlns = nil;