File tree 3 files changed +3
-3
lines changed
crates/subspace-farmer/src
bin/subspace-farmer/commands
3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -672,7 +672,7 @@ where
672
672
"More than 256 plots are not supported, this is checked above already; qed" ,
673
673
) ;
674
674
let readers_and_pieces = Arc :: clone ( & readers_and_pieces) ;
675
- let span = info_span ! ( "farm " , %disk_farm_index) ;
675
+ let span = info_span ! ( "" , %disk_farm_index) ;
676
676
677
677
// Collect newly plotted pieces
678
678
let on_plotted_sector_callback =
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ pub(crate) fn scrub(disk_farms: &[PathBuf]) {
8
8
. into_par_iter ( )
9
9
. enumerate ( )
10
10
. for_each ( |( disk_farm_index, directory) | {
11
- let span = info_span ! ( "single_disk_farm " , %disk_farm_index) ;
11
+ let span = info_span ! ( "" , %disk_farm_index) ;
12
12
let _span_guard = span. enter ( ) ;
13
13
info ! (
14
14
path = %directory. display( ) ,
Original file line number Diff line number Diff line change @@ -901,7 +901,7 @@ impl SingleDiskFarm {
901
901
( Some ( sender) , Some ( receiver) )
902
902
} ;
903
903
904
- let span = info_span ! ( "single_disk_farm " , %disk_farm_index) ;
904
+ let span = info_span ! ( "" , %disk_farm_index) ;
905
905
906
906
let plotting_join_handle = tokio:: task:: spawn_blocking ( {
907
907
let sectors_metadata = Arc :: clone ( & sectors_metadata) ;
You can’t perform that action at this time.
0 commit comments