Skip to content

Commit

Permalink
Fixing spacing in log messages (#16)
Browse files Browse the repository at this point in the history
  • Loading branch information
mtlynch committed Feb 11, 2018
1 parent 9fdbd5d commit 52fb82d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sia_load_tester/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def configure_logging():
root_logger = logging.getLogger()
handler = logging.StreamHandler()
formatter = logging.Formatter(
'%(asctime)s %(name)-15s %(levelname)-4s %(message)s',
'%(asctime)s %(name)-16s %(levelname)-4s %(message)s',
'%Y-%m-%d %H:%M:%S')
handler.setFormatter(formatter)
root_logger.addHandler(handler)
Expand Down

0 comments on commit 52fb82d

Please sign in to comment.