From bef45a34e6ee6d5bad2b90092f59e274f0d26beb Mon Sep 17 00:00:00 2001 From: Kevin Carter Date: Thu, 4 Aug 2016 12:37:18 -0500 Subject: [PATCH] Disable stderr logging OSLO logging currently defaults the 'use_stderr' option to True which results duplicate logs in service daemon logs for both upstart and systemd. To correct this issue the use_stderr option has been set to false. Change-Id: I9e9556701c13f98e66f11facfe1d57fbc8432630 Closes-Bug: 1588051 Signed-off-by: Kevin Carter --- templates/tempest.conf.j2 | 2 ++ 1 file changed, 2 insertions(+) diff --git a/templates/tempest.conf.j2 b/templates/tempest.conf.j2 index 01f0be92..464ef753 100644 --- a/templates/tempest.conf.j2 +++ b/templates/tempest.conf.j2 @@ -1,6 +1,8 @@ # {{ ansible_managed }} [DEFAULT] +# Disable stderr logging +use_stderr = False debug = {{ debug }} fatal_deprecations = {{ tempest_fatal_deprecations }} log_file = {{ tempest_log_dir}}/tempest.log