Skip to content

Commit

Permalink
fix: downgrade JSON parsing from warn to debug in from_integration_js…
Browse files Browse the repository at this point in the history
…on_v2. Fixes #408
  • Loading branch information
mefellows committed Apr 17, 2024
1 parent 758f4c0 commit e3dc265
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rust/pact_ffi/src/mock_server/handles.rs
Expand Up @@ -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())
}
}
Expand Down

0 comments on commit e3dc265

Please sign in to comment.