Skip to content

Commit 50e9e8d

Browse files
committed
Reduce debugging verbosity on openstack_test.py
Signed-off-by: Matthias Büchse <matthias.buechse@alasca.cloud>
1 parent 7a2d25d commit 50e9e8d

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

Tests/iaas/openstack_test.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,8 @@ def __init__(self):
183183
def __getattr__(self, key):
184184
val = self._values.get(key)
185185
if val is None:
186-
logger.debug(f'... {key}')
186+
# uncomment for super serious debugging
187+
# logger.log(f'... {key}')
187188
try:
188189
ret = self._functions[key](self)
189190
except BaseException as e:
@@ -218,7 +219,7 @@ def harness(name, *check_fns):
218219
- 'FAIL' if one of the functions has a falsy result
219220
- 'PASS' otherwise
220221
"""
221-
logger.debug(f'** {name}')
222+
logger.info(f'*** {name}')
222223
try:
223224
result = all(check_fn() for check_fn in check_fns)
224225
except BaseException:

0 commit comments

Comments
 (0)