@@ -205,7 +205,6 @@ async fn get_log_from_handle<'a>(
205
205
_phantom : std:: marker:: PhantomData ,
206
206
} ) ;
207
207
}
208
- tracing:: info!( "Opening log at {}" , prefix) ;
209
208
let opened = LogWriter :: open (
210
209
options. clone ( ) ,
211
210
Arc :: clone ( storage) ,
@@ -667,6 +666,7 @@ impl LogServer {
667
666
Ok ( ( ) )
668
667
}
669
668
669
+ #[ tracing:: instrument( skip( self , proxy) ) ]
670
670
async fn effectuate_log_transfer (
671
671
& self ,
672
672
collection_id : CollectionUuid ,
@@ -757,6 +757,7 @@ impl LogServer {
757
757
} )
758
758
}
759
759
760
+ #[ tracing:: instrument( skip( self , request) ) ]
760
761
async fn forward_push_logs (
761
762
& self ,
762
763
collection_id : CollectionUuid ,
@@ -781,6 +782,7 @@ impl LogServer {
781
782
}
782
783
}
783
784
785
+ #[ tracing:: instrument( skip( self , request) ) ]
784
786
async fn forward_scout_logs (
785
787
& self ,
786
788
request : Request < ScoutLogsRequest > ,
@@ -792,6 +794,7 @@ impl LogServer {
792
794
}
793
795
}
794
796
797
+ #[ tracing:: instrument( skip( self , request) ) ]
795
798
async fn forward_pull_logs (
796
799
& self ,
797
800
request : Request < PullLogsRequest > ,
@@ -803,6 +806,7 @@ impl LogServer {
803
806
}
804
807
}
805
808
809
+ #[ tracing:: instrument( skip( self , request) ) ]
806
810
async fn forward_update_collection_log_offset (
807
811
& self ,
808
812
request : Request < UpdateCollectionLogOffsetRequest > ,
@@ -814,6 +818,7 @@ impl LogServer {
814
818
}
815
819
}
816
820
821
+ #[ tracing:: instrument( skip( self , request) ) ]
817
822
async fn forward_fork_logs (
818
823
& self ,
819
824
request : Request < ForkLogsRequest > ,
0 commit comments