os-loganayze fix

This fixes log output in the gate

Change-Id: I7c74e45128d6d1142452619324b3394660741e4c
This commit is contained in:
Graham Hayes 2018-02-01 14:52:58 +00:00
parent f8e5c0af8e
commit 4a023ac9cc
No known key found for this signature in database
GPG Key ID: 1B263DC59F4AEFD5
1 changed files with 3 additions and 7 deletions

View File

@ -20,10 +20,6 @@ function setup_colorized_logging_designate {
local user_var=${4:-"user_name"}
setup_colorized_logging $conf_file $conf_section $project_var $user_var
# Override the logging_context_format_string value chosen by
# setup_colorized_logging.
iniset $conf_file $conf_section logging_context_format_string "%(asctime)s.%(msecs)03d %(color)s%(levelname)s %(name)s [%(request_id)s %(user_identity)s%(color)s] %(instance)s%(color)s%(message)s"
}
# DevStack Plugin
@ -134,12 +130,12 @@ function configure_designate {
fi
# Logging Configuration
if [ "$SYSLOG" != "False" ]; then
iniset $DESIGNATE_CONF DEFAULT use_syslog True
if [ "$USE_SYSTEMD" != "False" ]; then
setup_systemd_logging $DESIGNATE_CONF
fi
# Format logging
if [ "$LOG_COLOR" == "True" ] && [ "$SYSLOG" == "False" ]; then
if [ "$LOG_COLOR" == "True" ] && [ "$USE_SYSTEMD" == "False" ]; then
setup_colorized_logging_designate $DESIGNATE_CONF DEFAULT "tenant" "user"
fi