diff --git a/api/pkg/database/size_enforcer.go b/api/pkg/database/size_enforcer.go index e4841e014..fb2acef96 100644 --- a/api/pkg/database/size_enforcer.go +++ b/api/pkg/database/size_enforcer.go @@ -76,7 +76,6 @@ func checkFileSize(maxSizeBytes int64) { if err != nil { fmt.Printf("Error checking %s file size: %v\n", DBPath, err) } else { - fmt.Printf("%s size is %s, checking if over %s\n", DBPath, shared.BytesToHumanReadable(fileStat.Size()), shared.BytesToHumanReadable(maxSizeBytes)) if fileStat.Size() > maxSizeBytes { pruneOldEntries(fileStat.Size()) }