From b72dc43bc3e361094c34fa94cbb7033f5083887e Mon Sep 17 00:00:00 2001 From: Ophestra Date: Wed, 21 Jan 2026 05:35:28 +0900 Subject: [PATCH] internal/pkg: report dependency graph size This is an interesting value to know when profiling. Signed-off-by: Ophestra --- internal/pkg/pkg.go | 1 + 1 file changed, 1 insertion(+) diff --git a/internal/pkg/pkg.go b/internal/pkg/pkg.go index 738eb5c..c8e3699 100644 --- a/internal/pkg/pkg.go +++ b/internal/pkg/pkg.go @@ -1111,6 +1111,7 @@ func (c *Cache) Cure(a Artifact) ( } n++ } + c.msg.Verbosef("visited %d artifacts", n) } return c.cure(a)