Commit a7bf6e5d authored by Jeremy Hylton's avatar Jeremy Hylton

Lower to log levels, one at Toby's request.

Closes SF bug #659068.
parent 127c7324
......@@ -245,7 +245,7 @@ class Connection(smac.SizedMessageAsyncConnection):
raise ZRPCError(msg)
if __debug__:
self.log("calling %s%s" % (name, short_repr(args)),
level=zLOG.BLATHER)
level=zLOG.DEBUG)
meth = getattr(self.obj, name)
try:
......@@ -428,7 +428,7 @@ class Connection(smac.SizedMessageAsyncConnection):
del self.replies[msgid]
if __debug__:
self.log("wait(%d): reply=%s" %
(msgid, short_repr(reply)), level=zLOG.DEBUG)
(msgid, short_repr(reply)), level=zLOG.TRACE)
return reply
if self.is_async():
self.replies_cond.wait(10.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