Commit c4c4d37d authored by olivier R-D's avatar olivier R-D

remove debug warning

parent 8991a979
...@@ -82,7 +82,7 @@ class BinaryServer(object): ...@@ -82,7 +82,7 @@ class BinaryServer(object):
return return
ret = self.processor.process(hdr, buf) ret = self.processor.process(hdr, buf)
if not ret: if not ret:
logger.warning("processor returned False, we close connection from %s", self.peername) logger.info("processor returned False, we close connection from %s", self.peername)
self.transport.close() self.transport.close()
return return
if len(buf) == 0: if len(buf) == 0:
......
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