类似的问题似乎都是基于使用自定义记录器,我很高兴只使用默认/无。我的pika python应用程序运行并接收消息,但几秒钟后与No handlers could be found for logger "pika.adapters.blocking_connection"崩溃,有什么想法吗?

import pika

credentials = pika.PlainCredentials('xxx_apphb.com', 'xxx')
parameters = pika.ConnectionParameters('bunny.cloudamqp.com', 5672, 'xxx_apphb.com', credentials)

connection = pika.BlockingConnection(parameters)
channel = connection.channel()

channel.queue_declare('messages')

def message_received(channel, method, properties, body):
    print "[x] Received %r" % (body)

channel.basic_consume(message_received, queue='messages', no_ack=True)

channel.start_consuming()

通过添加修复:
import logging
logging.basicConfig()

最佳答案

通过添加修复:

import logging
logging.basicConfig()

关于python - 无法找到记录器“pika.adapters.blocking_connection”的处理程序,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/13517955/

10-10 17:54