Skip to content

Commit

Permalink
Merge pull request #19 from lsst/tickets/DM-19769
Browse files Browse the repository at this point in the history
DM-19769: Fix time logging with --longlog.
  • Loading branch information
ktlim committed May 15, 2019
2 parents 8163d2e + 6ecd0c2 commit 067ee67
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/lsst/ctrl/mpexec/cmdLineFwk.py
Expand Up @@ -155,7 +155,7 @@ def configLog(longlog, logLevels):
logger, `level` is a logging level name ('DEBUG', 'INFO', etc.)
"""
if longlog:
message_fmt = "%-5p %d{yyyy-MM-ddThh:mm:ss.sss} %c (%X{LABEL})(%F:%L)- %m%n"
message_fmt = "%-5p %d{yyyy-MM-ddTHH:mm:ss.SSSZ} %c (%X{LABEL})(%F:%L)- %m%n"
else:
message_fmt = "%c %p: %m%n"

Expand Down

0 comments on commit 067ee67

Please sign in to comment.