Merge "Move to debug a too verbose log"

This commit is contained in:
Jenkins 2015-12-12 07:37:30 +00:00 committed by Gerrit Code Review
commit def1b841cb
1 changed files with 5 additions and 5 deletions

View File

@ -97,11 +97,11 @@ class AMQPIncomingMessage(base.IncomingMessage):
return
except rpc_amqp.AMQPDestinationNotFound:
if timer.check_return() > 0:
LOG.info(_LI("The reply %(msg_id)s cannot be sent "
"%(reply_q)s reply queue don't exist, "
"retrying...") % {
'msg_id': self.msg_id,
'reply_q': self.reply_q})
LOG.debug(("The reply %(msg_id)s cannot be sent "
"%(reply_q)s reply queue don't exist, "
"retrying...") % {
'msg_id': self.msg_id,
'reply_q': self.reply_q})
time.sleep(0.25)
else:
self._obsolete_reply_queues.add(self.reply_q, self.msg_id)