diff options
Diffstat (limited to 'ipalib/constants.py')
-rw-r--r-- | ipalib/constants.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ipalib/constants.py b/ipalib/constants.py index 14f7f25d..13a60f2b 100644 --- a/ipalib/constants.py +++ b/ipalib/constants.py @@ -61,10 +61,10 @@ FORMAT_STDERR = ': '.join([ # Log format for log file: FORMAT_FILE = '\t'.join([ '%(created)f', - '%(levelname)s', - '%(message)r', # Using %r for repr() so message is a single line '%(process)d', '%(threadName)s', + '%(levelname)s', + '%(message)r', # Using %r for repr() so message is a single line ]) |