We don't need the [LOGLEVEL], so skip it.

This commit is contained in:
T. Joseph Carter 2017-07-07 02:40:12 -07:00
parent d4d9cc8072
commit d5bbc4aed3
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@ log = StyleAdapter(logging.getLogger(__name__))
# Set up our logging facility
_handler = logging.StreamHandler(sys.stdout)
_formatter = logging.Formatter('%(levelname)s: %(message)s')
_formatter = logging.Formatter('%(message)s')
_handler.setFormatter(_formatter)
log.logger.addHandler(_handler)
log.setLevel(logging.DEBUG)