From e3dc2658927ce8816769d9df69bf4e6c4feef11f Mon Sep 17 00:00:00 2001 From: Matt Fellows <53900+mefellows@users.noreply.github.com> Date: Wed, 17 Apr 2024 13:28:14 +1000 Subject: [PATCH] fix: downgrade JSON parsing from warn to debug in from_integration_json_v2. Fixes #408 --- rust/pact_ffi/src/mock_server/handles.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rust/pact_ffi/src/mock_server/handles.rs b/rust/pact_ffi/src/mock_server/handles.rs index 392fbd756..9ed675e34 100644 --- a/rust/pact_ffi/src/mock_server/handles.rs +++ b/rust/pact_ffi/src/mock_server/handles.rs @@ -1053,7 +1053,7 @@ fn from_integration_json_v2( _ => Either::Left(value.to_string()) }, Err(err) => { - warn!("Failed to parse the value, treating it as a plain string: {}", err); + debug!("Failed to parse the value, treating it as a plain string: {}", err); Either::Left(value.to_string()) } }