diff options
author | Jason Gerard DeRose <jderose@redhat.com> | 2009-01-22 18:48:21 -0700 |
---|---|---|
committer | Rob Crittenden <rcritten@redhat.com> | 2009-02-03 15:29:01 -0500 |
commit | 244346dbcbe999bb921ee792ddc2ac222532cc56 (patch) | |
tree | 5c6e88a733cb9e304e03a37a792df0358b7f54b4 /ipalib/constants.py | |
parent | 833088955c0e6c606bc8ea96a05ddf6c3a34bc6b (diff) | |
download | freeipa-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.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 ]) |