From 449becae646ffb618bfaeb845f290536bfda01dd Mon Sep 17 00:00:00 2001 From: Kevin Carter Date: Thu, 4 Aug 2016 12:37:00 -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: I3799265a48c8f92f9cef77a10b3f02fa6aa66b7f Closes-Bug: 1588051 Signed-off-by: Kevin Carter --- templates/rally.conf.j2 | 2 ++ 1 file changed, 2 insertions(+) diff --git a/templates/rally.conf.j2 b/templates/rally.conf.j2 index c9b17e2..1c3752e 100644 --- a/templates/rally.conf.j2 +++ b/templates/rally.conf.j2 @@ -1,4 +1,6 @@ [DEFAULT] +# Disable stderr logging +use_stderr = False # # From oslo.log