mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_scansion_record: Split stanzas into multiple lines
Not perfect but should improve readability somewhat
This commit is contained in:
parent
f8707c242b
commit
e2e5083548
1 changed files with 3 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue