mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
plugins: Remove tostring call from logging
Taken care of by loggingmanager now Mass-rewrite using lua pattern like `tostring%b()`
This commit is contained in:
parent
0e16eeb216
commit
40b1e3e0ed
14 changed files with 37 additions and 39 deletions
|
@ -230,13 +230,13 @@ module:hook("iq/bare/http://jabber.org/protocol/pubsub:pubsub", function(event)
|
|||
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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue