Allow default log handler to handle levels >= DEBUG

This commit is contained in:
Oleksii Shevchuk 2018-10-03 11:03:13 +03:00
parent 6a65943f66
commit 18d17aa048
1 changed files with 1 additions and 1 deletions

View File

@ -67,7 +67,7 @@ if __name__ == '__main__':
logging_stream = logging.StreamHandler()
logging_stream.setFormatter(logging.Formatter('%(asctime)-15s| %(message)s'))
logging_stream.setLevel(args.loglevel)
logging_stream.setLevel(logging.DEBUG)
root_logger.handlers = []