Add missing argument

This commit is contained in:
Dave Astels 2019-03-13 23:29:14 -04:00
parent 5b415520f9
commit 2c9dcace67
2 changed files with 2 additions and 2 deletions

View file

@ -19,7 +19,7 @@ All text above must be included in any redistribution.
#
# from file_handler import FileHandler
# import adafruit_logging as logging
# l = logging.getLogger()
# l = logging.getLogger('file')
# l.addHandler(FileHandler('log.txt'))
# l.level = logging.ERROR
# l.error("test")

View file

@ -23,7 +23,7 @@ All text above must be included in any redistribution.
# import adafruit_logging as logging
#
# uart = busio.UART(board.TX, board.RX, baudrate=115200)
# logger = logging.getLogger()
# logger = logging.getLogger('uart')
# logger.addHandler(UartHandler(uart))
# logger.level = logging.INFO
# logger.info('testing')