Commit 3c9030e9 authored by Guus der Kinderen's avatar Guus der Kinderen

Don't log problems that we cannot resolve properly (and originate outside of...

Don't log problems that we cannot resolve properly (and originate outside of our influence) to warn.
parent 726c5e03
...@@ -266,7 +266,7 @@ public abstract class StanzaHandler { ...@@ -266,7 +266,7 @@ public abstract class StanzaHandler {
packet.getShow(); packet.getShow();
} }
catch (IllegalArgumentException e) { catch (IllegalArgumentException e) {
Log.warn("Invalid presence show for -" + packet.toXML(), e); Log.debug("Invalid presence show for -" + packet.toXML(), e);
// The presence packet contains an invalid presence show so replace it with // The presence packet contains an invalid presence show so replace it with
// an available presence show // an available presence show
packet.setShow(null); packet.setShow(null);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment