From e73f9e0626d5ac3055feac76b0eb0dfa8f25dd4c Mon Sep 17 00:00:00 2001 From: Ophestra Date: Thu, 30 Jul 2026 22:41:18 +0900 Subject: internal/pkg: highlight miscellaneous verbose output These were missed when adding highlight for core cache verbose output. Signed-off-by: Ophestra --- internal/pkg/pkg.go | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'internal/pkg/pkg.go') diff --git a/internal/pkg/pkg.go b/internal/pkg/pkg.go index 21e5b8d7..f1a677b1 100644 --- a/internal/pkg/pkg.go +++ b/internal/pkg/pkg.go @@ -1137,7 +1137,10 @@ func (c *Cache) Scrub(checks int) error { } else if !ce.check(ent, want) { wg.Go(func() { condemn(ent) }) } else { - c.msg.Verbosef("%s is consistent", ent.Name()) + c.msg.Verbosef( + "%s%s%s is consistent", + c.sgrIdent, ent.Name(), c.sgrRes, + ) } p.Put(want) wg.Done() -- cgit v1.3.1