diff --git a/resources/prosody-plugins/mod_muc_meeting_id.lua b/resources/prosody-plugins/mod_muc_meeting_id.lua index d52804e905..2eec5a4a1b 100644 --- a/resources/prosody-plugins/mod_muc_meeting_id.lua +++ b/resources/prosody-plugins/mod_muc_meeting_id.lua @@ -98,7 +98,7 @@ module:hook('muc-occupant-pre-join', function (event) module:log('error', 'Error enqueuing occupant event for: %s', occupant.nick); return true; end - module:log('info', 'Occupant pushed to prejoin queue %s', occupant.nick); + module:log('debug', 'Occupant pushed to prejoin queue %s', occupant.nick); -- stop processing return true; @@ -115,7 +115,7 @@ function handle_jicofo_unlock(event) -- and now let's handle all pre_join_queue events for _, ev in room.pre_join_queue:items() do - module:log('info', 'Occupant processed from queue %s', ev.occupant.nick); + module:log('debug', 'Occupant processed from queue %s', ev.occupant.nick); room:handle_normal_presence(ev.origin, ev.stanza); end room.pre_join_queue = nil; diff --git a/resources/prosody-plugins/mod_s2s_whitelist.lua b/resources/prosody-plugins/mod_s2s_whitelist.lua index 0ce23857f8..a08cd5e8f9 100644 --- a/resources/prosody-plugins/mod_s2s_whitelist.lua +++ b/resources/prosody-plugins/mod_s2s_whitelist.lua @@ -7,7 +7,7 @@ module:hook("route/remote", function (event) if not whitelist:contains(event.to_host) then -- make sure we do not send error replies for errors if event.stanza.attr.type == 'error' then - module:log('info', 'Not whitelisted destination domain for an error: %s', event.stanza); + module:log('debug', 'Not whitelisted destination domain for an error: %s', event.stanza); return true; end