-
Notifications
You must be signed in to change notification settings - Fork 21
Closed
Description
In the latest version of the library, the default logger has no handler.
CPython:
>>> import logging
>>> logger = logging.getLogger('test')
>>> logger.error('Error message')
Error messageadafruit_logging in CP:
>>> import adafruit_logging as logging
>>> logger = logging.getLogger('test')
>>> logger.error('Error message')With a streamhandler, the output lacks a return character:
>>> import adafruit_logging as logging
>>> logger = logging.getLogger('test')
>>> logger.addHandler(logging.StreamHandler())
>>> logger.error('Error message')
54.285: ERROR - Error message>>> Metadata
Metadata
Assignees
Labels
No labels