@@ -45,7 +45,6 @@ use tracing::{debug, debug_span, error, info, Instrument, instrument, trace, war
4545pub use callback_executors:: NullRequestFilterExecutor ;
4646use callback_executors:: RequestFilterExecutor ;
4747use pact_matching:: { match_response, Mismatch } ;
48- use pact_matching:: logging:: LOG_ID ;
4948use pact_matching:: metrics:: { MetricEvent , send_metrics_async} ;
5049
5150use crate :: callback_executors:: { ProviderStateError , ProviderStateExecutor } ;
@@ -988,8 +987,7 @@ pub async fn verify_provider_async<F: RequestFilterExecutor, S: ProviderStateExe
988987 metrics_data : Option < VerificationMetrics >
989988) -> anyhow:: Result < VerificationExecutionResult > {
990989 pact_matching:: matchers:: configure_core_catalogue ( ) ;
991-
992- LOG_ID . scope ( format ! ( "verify:{}" , provider_info. name) , async {
990+ async {
993991 let pact_results = fetch_pacts ( source, consumers, & provider_info) . await ;
994992
995993 let mut total_results = 0 ;
@@ -1160,7 +1158,7 @@ pub async fn verify_provider_async<F: RequestFilterExecutor, S: ProviderStateExe
11601158 #[ cfg( feature = "plugins" ) ] shutdown_plugins ( ) ;
11611159
11621160 Ok ( verification_result)
1163- } . instrument ( tracing:: trace_span!( "verify_provider_async" ) ) ) . await
1161+ } . instrument ( tracing:: trace_span!( "verify_provider_async" ) ) . await
11641162}
11651163
11661164fn process_errors ( errors : & Vec < ( String , MismatchResult ) > , output : & mut Vec < String > , coloured_output : bool ) {
0 commit comments