Changed console logging format to make it more readable

This commit is contained in:
Remy
2011-07-14 13:33:52 -07:00
parent 7b495d7a33
commit 512eb5f401

View File

@@ -39,7 +39,7 @@ class RotatingLogger(object):
consolehandler = logging.StreamHandler()
consolehandler.setLevel(logging.DEBUG)
consoleformatter = logging.Formatter('%(asctime)s - %(levelname)-7s :: %(message)s', '%d-%b-%Y %H:%M:%S')
consoleformatter = logging.Formatter('%(asctime)s - %(levelname)s :: %(message)s', '%d-%b-%Y %H:%M:%S')
consolehandler.setFormatter(consoleformatter)
l.addHandler(consolehandler)