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
(cherry picked from commit 703da30eda)
This commit is contained in:
Jesse Pretorius 2018-08-13 11:23:38 +01:00 committed by Jesse Pretorius (odyssey4me)
parent 0aff517768
commit 7d5f293d0f
1 changed files with 7 additions and 0 deletions

View File

@ -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
@ -174,6 +177,10 @@ function gate_job_exit_tasks {
# files are viewable via a web browser in OpenStack-CI.
rename_log_files
# 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