Skip to content

Commit

Permalink
denoise an obnoxious log (#477)
Browse files Browse the repository at this point in the history
  • Loading branch information
matt-codecov committed May 29, 2024
1 parent d3c9650 commit 2492b5e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions services/report/raw_upload_processor.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# -*- coding: utf-8 -*-

import itertools
import logging
import random
import typing
Expand Down Expand Up @@ -172,8 +173,7 @@ def process_raw_upload(
log.info(
"Example path fixes for this raw upload",
extra={
"fixes": actual_path_fixes.items(),
"toc": path_fixer.toc,
"fixes": list(itertools.islice(actual_path_fixes.items(), 10)),
"disable_default_pathfixes": path_fixer.should_disable_default_pathfixes,
},
)
Expand Down

0 comments on commit 2492b5e

Please sign in to comment.