Skip to content

Commit

Permalink
Remove fmt.Println
Browse files Browse the repository at this point in the history
  • Loading branch information
rossjones committed Mar 15, 2024
1 parent 6074818 commit 672b9ce
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions pkg/cache/basic/cache.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
package basic

import (
"fmt"
"time"

"github.com/bacalhau-project/bacalhau/pkg/cache"
Expand Down Expand Up @@ -52,8 +51,6 @@ func NewCache[T any](options ...Option) (*BasicCache[T], error) {
defaultTTL: config.defaultTTL,
}

fmt.Println("Cache frequency is", config.cleanupFrequency)

if config.cleanupFrequency == 0 {
config.cleanupFrequency = DefaultFrequency
}
Expand Down

0 comments on commit 672b9ce

Please sign in to comment.