From bc7fc9e3711656dcb8ee993c4f6efe63ecfb321a Mon Sep 17 00:00:00 2001 From: svasudevprasad <151788366+svasudevprasad@users.noreply.github.com> Date: Tue, 8 Oct 2024 09:38:50 -0700 Subject: [PATCH] Remove job mappings info logs (#4296) HOST_JOB_SELECTION is working as intended. The mappings are chosen based on the environment variable. Hence remove the info logs to reduce clutter --- src/clusterfuzz/_internal/fuzzing/fuzzer_selection.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/clusterfuzz/_internal/fuzzing/fuzzer_selection.py b/src/clusterfuzz/_internal/fuzzing/fuzzer_selection.py index 34d928ced2..d5103db05b 100644 --- a/src/clusterfuzz/_internal/fuzzing/fuzzer_selection.py +++ b/src/clusterfuzz/_internal/fuzzing/fuzzer_selection.py @@ -154,7 +154,6 @@ def get_fuzz_task_payload(platform=None): if not mappings: return None, None - logs.info(f'Mappings: {mappings}.') selected_mappings = mappings # The environment variable containing a list of comma-separated jobs. # E.g: "libfuzzer_asan_android_host,afl_asan_android_host,..." @@ -163,8 +162,6 @@ def get_fuzz_task_payload(platform=None): jobs = get_job_list(jobs_selection) selected_mappings = [entity for entity in mappings if entity.job in jobs] - logs.info(f'Selected mappings: {selected_mappings}.') - if not selected_mappings: return None, None