Skip to content

Commit

Permalink
Merge pull request #563 from devos50/lowered_logging
Browse files Browse the repository at this point in the history
Lowered logging of statement
  • Loading branch information
xoriole committed Mar 21, 2018
2 parents a91b1a4 + e253605 commit d10ead8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dispersy.py
Expand Up @@ -981,8 +981,8 @@ def on_incoming_packets(self, packets, cache=True, timestamp=0.0, source=u"unkno
except CommunityNotFoundException:
packets = list(iterator)
candidates = set([candidate for candidate, _ in packets])
self._logger.warning("drop %d packets (received packet(s) for unknown community): %s",
len(packets), map(str, candidates))
self._logger.debug("drop %d packets (received packet(s) for unknown community): %s",
len(packets), map(str, candidates))
self._statistics.msg_statistics.increase_count(
u"drop", u"_convert_packets_into_batch:unknown community")
else:
Expand Down

0 comments on commit d10ead8

Please sign in to comment.