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