From 244346dbcbe999bb921ee792ddc2ac222532cc56 Mon Sep 17 00:00:00 2001 From: Jason Gerard DeRose Date: Thu, 22 Jan 2009 18:48:21 -0700 Subject: More work on xmlrpc stuff, started migrated more code to use errors2 instead of errors --- ipalib/constants.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ipalib/constants.py') 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 ]) -- cgit