Skip to content

Commit

Permalink
Suppress OSS-Fuzz helper logs. (#1277)
Browse files Browse the repository at this point in the history
Part of #1273.
  • Loading branch information
oliverchang committed May 5, 2023
1 parent bf8ff72 commit f783655
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions docker/worker/worker.py
Original file line number Diff line number Diff line change
Expand Up @@ -652,6 +652,10 @@ def main():
# Add oss-fuzz/infra to the import path so we can import from it.
sys.path.append(os.path.join(oss_fuzz_dir, 'infra'))

# Suppress OSS-Fuzz build error logs. These are expected as part of
# bisection.
logging.getLogger('helper').setLevel(logging.CRITICAL)

osv.ensure_updated_checkout(OSS_FUZZ_GIT_URL, oss_fuzz_dir)

ndb_client = ndb.Client()
Expand Down

0 comments on commit f783655

Please sign in to comment.