This is an automated email from the ASF dual-hosted git repository. fschumacher pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/jmeter.git
commit 4f23430cb417ef26be93214c07017021502b1ef6 Author: Felix Schumacher <[email protected]> AuthorDate: Thu Oct 8 18:07:35 2020 +0200 Add missing parameter to log message --- .../org/apache/jmeter/protocol/http/proxy/DefaultSamplerCreator.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/protocol/http/src/main/java/org/apache/jmeter/protocol/http/proxy/DefaultSamplerCreator.java b/src/protocol/http/src/main/java/org/apache/jmeter/protocol/http/proxy/DefaultSamplerCreator.java index 61d1af5..5e6e588 100644 --- a/src/protocol/http/src/main/java/org/apache/jmeter/protocol/http/proxy/DefaultSamplerCreator.java +++ b/src/protocol/http/src/main/java/org/apache/jmeter/protocol/http/proxy/DefaultSamplerCreator.java @@ -148,14 +148,14 @@ public class DefaultSamplerCreator extends AbstractSamplerCreator { sampler.getContentEncoding()); } } catch (Exception e) { - log.debug("Ignoring request, '{}' as it's not a valid GraphQL post data."); + log.debug("Ignoring request, '{}' as it's not a valid GraphQL post data.", request); } } else if (HTTPConstants.GET.equals(method)) { try { params = GraphQLRequestParamUtils.toGraphQLRequestParams(sampler.getArguments(), sampler.getContentEncoding()); } catch (Exception e) { - log.debug("Ignoring request, '{}' as it does not valid GraphQL arguments."); + log.debug("Ignoring request, '{}' as it does not valid GraphQL arguments.", request); } }
