Recent Posts
Archives

PostHeaderIcon No handlers could be found for logger…

Case

You run a Python script, and you get an error similar to:
[python]No handlers could be found for logger "stomp.py"[/python]

Fix

Edit the script, and add the following block:
[python]import logging
logging.basicConfig()[/python]
This will produce explicit log that will allow you to identity the source of the actual issue.

Leave a Reply