Don't use warn log level for msg: stopped at onSuccess: Message not broadcasted because we have stopped the handler already.

This commit is contained in:
Manfred Karrer 2016-06-04 18:40:44 +02:00
parent 726f81c8fe
commit 197efe1a61

View file

@ -176,7 +176,8 @@ public class BroadcastHandler implements PeerManager.Listener {
resultHandler.onCompleted(BroadcastHandler.this); resultHandler.onCompleted(BroadcastHandler.this);
} }
} else { } else {
onFault("stopped at onSuccess: " + errorMessage); // TODO investigate why that is called very often at seed nodes
onFault("stopped at onSuccess: " + errorMessage, false);
} }
} }