Software /
code /
prosody
Diff
plugins/mod_pep_simple.lua @ 10111:0f335815244f
plugins: Remove tostring call from logging
Taken care of by loggingmanager now
Mass-rewrite using lua pattern like `tostring%b()`
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Tue, 30 Jul 2019 02:29:36 +0200 |
parent | 9691:e11e076f0eb8 |
child | 10555:f73947a9bd8c |
line wrap: on
line diff
--- a/plugins/mod_pep_simple.lua Tue Jul 30 02:24:06 2019 +0200 +++ b/plugins/mod_pep_simple.lua Tue Jul 30 02:29:36 2019 +0200 @@ -230,13 +230,13 @@ return true; else --invalid request session.send(st.error_reply(stanza, 'modify', 'bad-request')); - module:log("debug", "Invalid request: %s", tostring(payload)); + module:log("debug", "Invalid request: %s", payload); return true; end else --no presence subscription session.send(st.error_reply(stanza, 'auth', 'not-authorized') :tag('presence-subscription-required', {xmlns='http://jabber.org/protocol/pubsub#errors'})); - module:log("debug", "Unauthorized request: %s", tostring(payload)); + module:log("debug", "Unauthorized request: %s", payload); return true; end end