diff options
| author | Ophestra <cat@gensokyo.uk> | 2026-07-30 22:41:18 +0900 |
|---|---|---|
| committer | Ophestra <cat@gensokyo.uk> | 2026-07-30 22:41:18 +0900 |
| commit | e73f9e0626d5ac3055feac76b0eb0dfa8f25dd4c (patch) | |
| tree | 591af104342a400a8fd53aa3a6974dbb21aca078 /internal/pkg/pkg.go | |
| parent | ddd90b780bf05fe4e98f7ca5d1ed321089ef0755 (diff) | |
internal/pkg: highlight miscellaneous verbose output
These were missed when adding highlight for core cache verbose output.
Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'internal/pkg/pkg.go')
| -rw-r--r-- | internal/pkg/pkg.go | 5 |
1 files changed, 4 insertions, 1 deletions
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() |
