diff options
author | Kim Alvefur <zash@zash.se> | 2017-10-29 00:06:26 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2017-10-29 00:06:26 +0200 |
commit | 1925151837c00dd072dc1524853e07a7eebb382b (patch) | |
tree | 4ac325749f8cb746fc152b160825bd47d576080f /core | |
parent | 8bdde46dfd3b858f723219f8627951b90ff82a05 (diff) | |
download | prosody-1925151837c00dd072dc1524853e07a7eebb382b.tar.gz prosody-1925151837c00dd072dc1524853e07a7eebb382b.zip |
rostermanager: Demote warning to debug message
Diffstat (limited to 'core')
-rw-r--r-- | core/rostermanager.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/rostermanager.lua b/core/rostermanager.lua index 32de3a54..6acc1003 100644 --- a/core/rostermanager.lua +++ b/core/rostermanager.lua @@ -115,7 +115,7 @@ local function load_roster(username, host) roster_metadata(roster, err); if roster[jid] then roster[jid] = nil; - log("warn", "Roster for %s had a self-contact, removing", jid); + log("debug", "Roster for %s had a self-contact, removing", jid); roster_store:set(username, roster); end if not err then |