diff options
author | Matthew Wild <mwild1@gmail.com> | 2009-05-28 02:59:47 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2009-05-28 02:59:47 +0100 |
commit | 72b2a6fd6bd4003ec222f6fdb3f82c7eff73281c (patch) | |
tree | b4533c0aee1339314289478736786d98382db727 /plugins | |
parent | bc682f6d41746149d1af6ca99f1d83bdca4a2712 (diff) | |
download | prosody-72b2a6fd6bd4003ec222f6fdb3f82c7eff73281c.tar.gz prosody-72b2a6fd6bd4003ec222f6fdb3f82c7eff73281c.zip |
mod_presence: Lower some log levels to their correct values
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/mod_presence.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/mod_presence.lua b/plugins/mod_presence.lua index ced51821..d2dd2f51 100644 --- a/plugins/mod_presence.lua +++ b/plugins/mod_presence.lua @@ -132,7 +132,7 @@ function handle_normal_presence(origin, stanza, core_route_stanza) end
stanza.attr.to = nil; -- reset it
else
- log("error", "presence recieved from client with no roster");
+ log("warn", "presence recieved from client with no roster");
end
end
@@ -153,7 +153,7 @@ function send_presence_of_available_resources(user, host, jid, recipient_session end
end
end
- log("info", "broadcasted presence of "..count.." resources from "..user.."@"..host.." to "..jid);
+ log("debug", "broadcasted presence of "..count.." resources from "..user.."@"..host.." to "..jid);
return count;
end
|