From ffce76c2facf893330724f758b7e48cb8db33eea Mon Sep 17 00:00:00 2001 From: Kevin Carter Date: Thu, 4 Aug 2016 12:36:30 -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: I00ae0eba37e0f5217461acaecdbec03edae3c43b Closes-Bug: 1588051 Signed-off-by: Kevin Carter --- templates/heat.conf.j2 | 2 ++ 1 file changed, 2 insertions(+) diff --git a/templates/heat.conf.j2 b/templates/heat.conf.j2 index 12d802b..5476331 100644 --- a/templates/heat.conf.j2 +++ b/templates/heat.conf.j2 @@ -4,6 +4,8 @@ {% set api_threads = _api_threads if _api_threads > 0 else 1 %} [DEFAULT] +# Disable stderr logging +use_stderr = False debug = {{ debug }} fatal_deprecations = {{ heat_fatal_deprecations }}