1
0
mirror of https://github.com/JoelBender/bacpypes synced 2025-10-27 00:57:47 +08:00

remove root logger level set, fix copy/paste error

This commit is contained in:
Joel Bender
2018-10-01 22:41:41 -04:00
parent 6ce6169e21
commit bd6bc3d84b
3 changed files with 1 additions and 6 deletions

View File

@@ -12,7 +12,6 @@ from cStringIO import StringIO
# create a root logger
root_logger = logging.getLogger('bacpypes')
root_logger.setLevel(logging.DEBUG)
def btox(data, sep=''):
@@ -61,7 +60,6 @@ def ModuleLogger(globs):
logger_name = globs['__name__']
# create a logger to be assigned to _log
logger = logging.getLogger(globs['__name__'])
logger = logging.getLogger(logger_name)
# put in a reference to the module globals