Commit 4ffb3b88 authored by Guido van Rossum's avatar Guido van Rossum

Lower another log level ("recv reply: %s, %s, %s") at Florent

Guillaume's request.
parent 4facbcd8
......@@ -231,7 +231,7 @@ class Connection(smac.SizedMessageAsyncConnection):
def handle_reply(self, msgid, flags, args):
if __debug__:
self.log("recv reply: %s, %s, %s"
% (msgid, flags, short_repr(args)), level=zLOG.DEBUG)
% (msgid, flags, short_repr(args)), level=zLOG.TRACE)
self.replies_cond.acquire()
try:
self.replies[msgid] = flags, args
......
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