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 7b0e1661..99b0ea71 100644
--- a/ipalib/constants.py
+++ b/ipalib/constants.py
@@ -45,8 +45,8 @@ LOG_FORMAT_STDERR_DEBUG = ' '.join([
# Tab-delimited log format for file (easy to opened in a spreadsheet):
-LOG_FORMAT_FILE = ' '.join([
- '%(created)f',
+LOG_FORMAT_FILE = '\t'.join([
+ '%(asctime)s',
'%(levelname)s',
'%(message)r', # Using %r for repr() so message is a single line
'%(lineno)d',