Skip to content

Commit

Permalink
remove debug prints
Browse files Browse the repository at this point in the history
  • Loading branch information
whyrusleeping committed Sep 21, 2023
1 parent 31f985e commit ce46f32
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions carstore/bs.go
Original file line number Diff line number Diff line change
Expand Up @@ -1275,15 +1275,9 @@ func (cs *CarStore) CompactUserShards(ctx context.Context, user models.Uid) (*Co
for _, b := range compactionQueue {
if !b.shouldCompact() {
stats.SkippedShards += len(b.shards)
for _, s := range b.shards {
fmt.Println("o: ", s.Total, s.dirtyFrac())

}
continue
}

fmt.Println("n: ", b.cleanBlocks)

if err := cs.compactBucket(ctx, user, b, shardsById, keep); err != nil {
return nil, err
}
Expand Down

0 comments on commit ce46f32

Please sign in to comment.