Reduce verbosity level when debug is true

Keystone is experiencing memecached timeouts during tempest tests in
CI, and the memcached log is in excess of 20Mbytes. There will be a lot
of write pressure on this log during tempest tests and this patch reduces
the debug log level in an attempt to increase test reliability.

Change-Id: I7db0eb361fc6f09ce64690be2018bf8ed8204e0c
This commit is contained in:
Jonathan Rosser 2020-06-16 21:48:20 +01:00
parent 8cdad4a708
commit 5080c42f0a
4 changed files with 4 additions and 4 deletions

View File

@ -2,7 +2,7 @@
-d
{% if debug | bool %}
-vvv
-vv
{% else %}
-v
{% endif %}

View File

@ -1,6 +1,6 @@
# {{ ansible_managed }}
{% if debug | bool %}
{% set _verbosity = '-vvv' %}
{% set _verbosity = '-vv' %}
{% else %}
{% set _verbosity = '-v' %}
{% endif %}

View File

@ -1,7 +1,7 @@
# {{ ansible_managed }}
{% if debug | bool %}
{% set _verbosity = '-vvv' %}
{% set _verbosity = '-vv' %}
{% else %}
{% set _verbosity = '-v' %}
{% endif %}

View File

@ -1,7 +1,7 @@
# {{ ansible_managed }}
{% if debug | bool %}
{% set _verbosity = '-vvv' %}
{% set _verbosity = '-vv' %}
{% else %}
{% set _verbosity = '-v' %}
{% endif %}