This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author cryvate
Recipients alex4200, cryvate, docs@python
Date 2021-06-17.10:19:39
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1623925179.55.0.0719412965502.issue44440@roundup.psfhosted.org>
In-reply-to
Content
Logging can be quite tricky. There are filters at multiple levels. In this case, you didn't set up the "global logging" and I am guessing, by default, it only shows WARNING and above. You can fix your problem by doing:

logging.basicConfig(level=logging.DEBUG)
History
Date User Action Args
2021-06-17 10:19:39cryvatesetrecipients: + cryvate, docs@python, alex4200
2021-06-17 10:19:39cryvatesetmessageid: <1623925179.55.0.0719412965502.issue44440@roundup.psfhosted.org>
2021-06-17 10:19:39cryvatelinkissue44440 messages
2021-06-17 10:19:39cryvatecreate