Similar questions all seem to be based around using a custom logger, I\'m happy to just use the default / none at all. My pika python app runs and receives messages but afte
There should be exchange name provide, it should not left default.
channel.exchange_declare(exchange='anyname')
Fixed by adding:
import logging logging.basicConfig()