diff options
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() |
