From e8b360fa224d83f661ce6a5b1eb6fd4360dde082 Mon Sep 17 00:00:00 2001 From: Kevin Carter Date: Thu, 4 Aug 2016 12:36:38 -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: I601c764bcb731baeedba784787b721cccfa487e4 Closes-Bug: 1588051 Signed-off-by: Kevin Carter --- templates/ironic.conf.j2 | 2 ++ 1 file changed, 2 insertions(+) diff --git a/templates/ironic.conf.j2 b/templates/ironic.conf.j2 index 298575cb..87e28f15 100644 --- a/templates/ironic.conf.j2 +++ b/templates/ironic.conf.j2 @@ -1,6 +1,8 @@ # {{ ansible_managed }} [DEFAULT] +# Disable stderr logging +use_stderr = False debug = {{ debug }} auth_strategy = {{ ironic_openstack_auth_strategy }}