Skip to content

Commit ead8bdd

Browse files
authored
fix logging level (#232)
* fix logging level * change from ERROR to INFO on skipping build variant.
1 parent 2f3434b commit ead8bdd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

redis_benchmarks_specification/__self_contained_coordinator__/self_contained_coordinator.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -481,7 +481,7 @@ def process_self_contained_coordinator_stream(
481481
if build_variants is not None:
482482
logging.info("Detected build variant filter")
483483
if build_variant_name not in build_variants:
484-
logging.error(
484+
logging.info(
485485
"Skipping {} given it's not part of build-variants for this test-suite {}".format(
486486
build_variant_name, build_variants
487487
)
@@ -850,7 +850,7 @@ def process_self_contained_coordinator_stream(
850850
temporary_dir_client,
851851
local_benchmark_output_filename,
852852
)
853-
logging.critical(
853+
logging.info(
854854
"Reading results json from {}".format(
855855
full_result_path
856856
)

0 commit comments

Comments
 (0)