summaryrefslogtreecommitdiffstats
path: root/ipalib/constants.py
diff options
context:
space:
mode:
Diffstat (limited to 'ipalib/constants.py')
-rw-r--r--ipalib/constants.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/ipalib/constants.py b/ipalib/constants.py
index 14f7f25d4..13a60f2ba 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
])