Skip to content

Commit 6f13ba3

Browse files
committed
Make the log output pretty and more useful
* requires https://review.openstack.org/#/c/8067/ Change-Id: Ib26c1bd7e9ef933a7dbe2ee0c476e8d439e17574
1 parent 20cfd67 commit 6f13ba3

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

stack.sh

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -262,6 +262,9 @@ SYSLOG=`trueorfalse False $SYSLOG`
262262
SYSLOG_HOST=${SYSLOG_HOST:-$HOST_IP}
263263
SYSLOG_PORT=${SYSLOG_PORT:-516}
264264

265+
# Use color for logging output
266+
LOG_COLOR=`trueorfalse True $LOG_COLOR`
267+
265268
# Service startup timeout
266269
SERVICE_TIMEOUT=${SERVICE_TIMEOUT:-60}
267270

@@ -1709,6 +1712,16 @@ fi
17091712
if [ "$API_RATE_LIMIT" != "True" ]; then
17101713
add_nova_opt "api_rate_limit=False"
17111714
fi
1715+
if [ "$LOG_COLOR" == "True" ] && [ "$SYSLOG" == "False" ]; then
1716+
# Add color to logging output
1717+
add_nova_opt "logging_context_format_string=%(asctime)s %(color)s%(levelname)s %(name)s [%(request_id)s %(user_name)s %(project_name)s%(color)s] %(instance)s%(color)s%(message)s"
1718+
add_nova_opt "logging_default_format_string=%(asctime)s %(color)s%(levelname)s %(name)s [-%(color)s] %(instance)s%(color)s%(message)s"
1719+
add_nova_opt "logging_debug_format_suffix=from (pid=%(process)d) %(funcName)s %(pathname)s:%(lineno)d"
1720+
add_nova_opt "logging_exception_prefix=%(color)s%(asctime)s TRACE %(name)s %(instance)s"
1721+
else
1722+
# Show user_name and project_name instead of user_id and project_id
1723+
add_nova_opt "logging_context_format_string=%(asctime)s %(levelname)s %(name)s [%(request_id)s %(user_name)s %(project_name)s] %(instance)s%(message)s"
1724+
fi
17121725

17131726

17141727
# Provide some transition from EXTRA_FLAGS to EXTRA_OPTS

0 commit comments

Comments
 (0)