diff options
author | Kim Alvefur <zash@zash.se> | 2018-11-12 17:15:41 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2018-11-12 17:15:41 +0100 |
commit | e2e508354835106abf4fd0530f854d3796a7e512 (patch) | |
tree | 5072ed1435f23a7451c3dc79453e195e549e4cfe | |
parent | f8707c242b2c414a5f166d2bd8859431532f911e (diff) | |
download | prosody-e2e508354835106abf4fd0530f854d3796a7e512.tar.gz prosody-e2e508354835106abf4fd0530f854d3796a7e512.zip |
mod_scansion_record: Split stanzas into multiple lines
Not perfect but should improve readability somewhat
-rw-r--r-- | plugins/mod_scansion_record.lua | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/plugins/mod_scansion_record.lua b/plugins/mod_scansion_record.lua index 0c0e8dbd..8d772b4e 100644 --- a/plugins/mod_scansion_record.lua +++ b/plugins/mod_scansion_record.lua @@ -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) |