Skip to content

Commit ba41b29

Browse files
committed
[Test] Reduce noise from metadata reporting, moving logs from info to debug and fixing error message.
1 parent 697207a commit ba41b29

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/integration-tests/conftest.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -330,11 +330,11 @@ def pytest_collection_finish(session):
330330
region = [unmarshal_az_override(az) for az in region]
331331
# Use the first element of the list of regions, since there must be at least one
332332
reporting_region = get_reporting_region(region[0])
333-
logging.info(f"Metadata reporting region {reporting_region}")
333+
logging.debug(f"Metadata reporting region {reporting_region}")
334334
# Setup the metadata table in case it doesn't exist
335335
MetadataTableManager(reporting_region, METADATA_TABLE).create_metadata_table()
336336
except Exception as exc:
337-
logging.info(f"There was a '{type(exc)}' error with '{exc}' when creating the table!")
337+
logging.error(f"There was a '{type(exc)}' error with '{exc}' when creating the table!")
338338

339339

340340
def _log_collected_tests(session):

0 commit comments

Comments
 (0)