aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2018-11-12 17:15:41 +0100
committerKim Alvefur <zash@zash.se>2018-11-12 17:15:41 +0100
commite2e508354835106abf4fd0530f854d3796a7e512 (patch)
tree5072ed1435f23a7451c3dc79453e195e549e4cfe
parentf8707c242b2c414a5f166d2bd8859431532f911e (diff)
downloadprosody-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.lua4
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)