Skip to content

Commit

Permalink
secscan: log manifest ID when indexing (PROJQUAY-3287) (#1166)
Browse files Browse the repository at this point in the history
for debugging quay.io clair issues
  • Loading branch information
syed authored Mar 3, 2022
1 parent 2b2e795 commit 6a8567f
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions data/secscan_model/secscan_v4_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -292,8 +292,13 @@ def mark_manifest_unsupported(manifest):
continue

logger.debug(
"Indexing %s/%s@%s"
% (candidate.repository.namespace_user, candidate.repository.name, manifest.digest)
"Indexing manifest [%d] %s/%s@%s"
% (
manifest._db_id,
candidate.repository.namespace_user,
candidate.repository.name,
manifest.digest,
)
)

try:
Expand Down

0 comments on commit 6a8567f

Please sign in to comment.