@@ -202,7 +202,6 @@ async fn get_log_from_handle<'a>(
202
202
_phantom : std:: marker:: PhantomData ,
203
203
} ) ;
204
204
}
205
- tracing:: info!( "Opening log at {}" , prefix) ;
206
205
let opened = LogWriter :: open (
207
206
options. clone ( ) ,
208
207
Arc :: clone ( storage) ,
@@ -640,6 +639,7 @@ pub struct LogServer {
640
639
}
641
640
642
641
impl LogServer {
642
+ #[ tracing:: instrument( skip( self , proxy) ) ]
643
643
async fn effectuate_log_transfer (
644
644
& self ,
645
645
collection_id : CollectionUuid ,
@@ -730,6 +730,7 @@ impl LogServer {
730
730
} )
731
731
}
732
732
733
+ #[ tracing:: instrument( skip( self , request) ) ]
733
734
async fn forward_push_logs (
734
735
& self ,
735
736
collection_id : CollectionUuid ,
@@ -754,6 +755,7 @@ impl LogServer {
754
755
}
755
756
}
756
757
758
+ #[ tracing:: instrument( skip( self , request) ) ]
757
759
async fn forward_scout_logs (
758
760
& self ,
759
761
request : Request < ScoutLogsRequest > ,
@@ -765,6 +767,7 @@ impl LogServer {
765
767
}
766
768
}
767
769
770
+ #[ tracing:: instrument( skip( self , request) ) ]
768
771
async fn forward_pull_logs (
769
772
& self ,
770
773
request : Request < PullLogsRequest > ,
@@ -776,6 +779,7 @@ impl LogServer {
776
779
}
777
780
}
778
781
782
+ #[ tracing:: instrument( skip( self , request) ) ]
779
783
async fn forward_update_collection_log_offset (
780
784
& self ,
781
785
request : Request < UpdateCollectionLogOffsetRequest > ,
@@ -787,6 +791,7 @@ impl LogServer {
787
791
}
788
792
}
789
793
794
+ #[ tracing:: instrument( skip( self , request) ) ]
790
795
async fn forward_fork_logs (
791
796
& self ,
792
797
request : Request < ForkLogsRequest > ,
0 commit comments