The below code is copied from the documentation. I am supposed to be able to see all the info logs. But I don\'t. I am only able to see the warn and above even though I\'ve
The accepted answer does not work for me on Win10, Python 3.7.2.
My solution:
logging.basicConfig(level=logging.DEBUG) logger = logging.getLogger(__name__) logger.setLevel(logging.DEBUG)
It's order sensitive.