File tree Expand file tree Collapse file tree 2 files changed +0
-11
lines changed
turbopack/crates/turbo-persistence/src Expand file tree Collapse file tree 2 files changed +0
-11
lines changed Original file line number Diff line number Diff line change @@ -18,11 +18,6 @@ pub struct Collector<K: StoreKey, const SIZE_SHIFT: usize = 0> {
18
18
impl < K : StoreKey , const SIZE_SHIFT : usize > Collector < K , SIZE_SHIFT > {
19
19
/// Creates a new collector. Note that this allocates the full capacity for the entries.
20
20
pub fn new ( ) -> Self {
21
- println ! (
22
- "Collector::new({} items, {} MiB)" ,
23
- MAX_ENTRIES_PER_INITIAL_FILE >> SIZE_SHIFT ,
24
- ( DATA_THRESHOLD_PER_INITIAL_FILE >> SIZE_SHIFT ) / 1024 / 1024
25
- ) ;
26
21
Self {
27
22
total_key_size : 0 ,
28
23
total_value_size : 0 ,
Original file line number Diff line number Diff line change @@ -505,9 +505,6 @@ impl TurboPersistence {
505
505
) ;
506
506
}
507
507
508
- println ! ( "Compaction started" ) ;
509
- let start = std:: time:: Instant :: now ( ) ;
510
-
511
508
let mut sequence_number;
512
509
let mut new_sst_files = Vec :: new ( ) ;
513
510
let mut indicies_to_delete = Vec :: new ( ) ;
@@ -534,9 +531,6 @@ impl TurboPersistence {
534
531
535
532
self . active_write_operation . store ( false , Ordering :: Release ) ;
536
533
537
- let elapsed = start. elapsed ( ) ;
538
- println ! ( "Compaction finished in {}ms" , elapsed. as_millis( ) ) ;
539
-
540
534
Ok ( ( ) )
541
535
}
542
536
You can’t perform that action at this time.
0 commit comments