Skip to content

Commit ff3bfaa

Browse files
committed
feat: demote some cache related logging to debug level
Signed-off-by: Brian McGee <[email protected]>
1 parent 385fbc3 commit ff3bfaa

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cache/cache.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ func ChangeSet(ctx context.Context, walker walk.Walker, filesCh chan<- *walk.Fil
191191
start := time.Now()
192192

193193
defer func() {
194-
logger.Infof("finished generating change set in %v", time.Since(start))
194+
logger.Debugf("finished generating change set in %v", time.Since(start))
195195
}()
196196

197197
var tx *bolt.Tx
@@ -272,7 +272,7 @@ func ChangeSet(ctx context.Context, walker walk.Walker, filesCh chan<- *walk.Fil
272272
func Update(files []*walk.File) error {
273273
start := time.Now()
274274
defer func() {
275-
logger.Infof("finished processing %v paths in %v", len(files), time.Since(start))
275+
logger.Debugf("finished processing %v paths in %v", len(files), time.Since(start))
276276
}()
277277

278278
if len(files) == 0 {

0 commit comments

Comments
 (0)