Disable verbose output of log collection
The verbose output is far too verbose, making it hard to find the results of the test in the console log. Change-Id: I540aba6beb536ac589100ee9374cc2a157fa621d
This commit is contained in:
parent
fe3f2161a6
commit
703da30eda
@ -159,6 +159,9 @@ function gate_job_exit_tasks {
|
||||
# by zuul).
|
||||
GATE_LOG_DIR=${GATE_LOG_DIR:-/opt/openstack-ansible/logs}
|
||||
|
||||
# Disable logging of every command, as it is too verbose.
|
||||
set +x
|
||||
|
||||
# If this is a gate node from OpenStack-Infra Store all logs into the
|
||||
# execution directory after gate run.
|
||||
if [ "$GATE_EXIT_LOG_COPY" == true ]; then
|
||||
@ -184,6 +187,10 @@ function gate_job_exit_tasks {
|
||||
# System status & Information
|
||||
log_instance_info
|
||||
|
||||
# Disable logging of every command, as it is too verbose.
|
||||
# We have to do this here because log_instance_info does set -x
|
||||
set +x
|
||||
|
||||
# Generate the ARA report if enabled
|
||||
if [ "$GATE_EXIT_RUN_ARA" == true ]; then
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user