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