Skip to content

Commit

Permalink
Remove job mappings info logs (#4296)
Browse files Browse the repository at this point in the history
HOST_JOB_SELECTION is working as intended. The mappings are chosen based
on the environment variable. Hence remove the info logs to reduce
clutter
  • Loading branch information
svasudevprasad authored Oct 8, 2024
1 parent 5fab1e2 commit bc7fc9e
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/clusterfuzz/_internal/fuzzing/fuzzer_selection.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,..."
Expand All @@ -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

Expand Down

0 comments on commit bc7fc9e

Please sign in to comment.