Removed timestamps from stdout logging.

This commit is contained in:
Jeremy Fincher 2003-12-03 22:34:03 +00:00
parent 95fc4532aa
commit 1f38ac29d5
1 changed files with 1 additions and 1 deletions

View File

@ -153,7 +153,7 @@ _logger.setLevel(-1)
if conf.stdoutLogging:
_stdoutHandler = BetterStreamHandler(sys.stdout)
_formatString = '%(name)s: %(levelname)s %(asctime)s %(message)s'
_formatString = '%(name)s: %(levelname)s %(message)s'
_stdoutFormatter = ColorizedFormatter(_formatString)
_stdoutHandler.setFormatter(_stdoutFormatter)
_stdoutHandler.setLevel(conf.minimumLogPriority)