mod_c2s: Fix fallback for missing session logger

This commit is contained in:
Kim Alvefur 2018-10-12 02:16:24 +02:00
parent e2321c4d37
commit 0f11cd3a54

View file

@ -71,7 +71,7 @@ function stream_callbacks.streamopened(session, attr)
end
session.version = tonumber(attr.version) or 0;
session.streamid = uuid_generate();
(session.log or session)("debug", "Client sent opening <stream:stream> to %s", session.host);
(session.log or log)("debug", "Client sent opening <stream:stream> to %s", session.host);
if not hosts[session.host] or not hosts[session.host].modules.c2s then
-- We don't serve this host...