mod_scansion_record: Split stanzas into multiple lines

Not perfect but should improve readability somewhat
This commit is contained in:
Kim Alvefur 2018-11-12 17:15:41 +01:00
parent f8707c242b
commit e2e5083548

View file

@ -37,7 +37,9 @@ local function record_event(session, event)
end
local function record_stanza(stanza, session, verb)
record(session.scansion_id.." "..verb..":\n\t"..tostring(stanza).."\n\n");
local flattened = tostring(stanza):gsub("><", ">\n\t<");
-- TODO Proper prettyprinting with indentation
record(session.scansion_id.." "..verb..":\n\t"..flattened.."\n\n");
end
local function record_stanza_in(stanza, session)