summaryrefslogtreecommitdiffstats
path: root/ipalib/constants.py
diff options
context:
space:
mode:
authorJason Gerard DeRose <jderose@redhat.com>2009-01-22 18:48:21 -0700
committerRob Crittenden <rcritten@redhat.com>2009-02-03 15:29:01 -0500
commit244346dbcbe999bb921ee792ddc2ac222532cc56 (patch)
tree5c6e88a733cb9e304e03a37a792df0358b7f54b4 /ipalib/constants.py
parent833088955c0e6c606bc8ea96a05ddf6c3a34bc6b (diff)
downloadfreeipa-244346dbcbe999bb921ee792ddc2ac222532cc56.tar.gz
freeipa-244346dbcbe999bb921ee792ddc2ac222532cc56.tar.xz
freeipa-244346dbcbe999bb921ee792ddc2ac222532cc56.zip
More work on xmlrpc stuff, started migrated more code to use errors2 instead of errors
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
])