We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In line 73 of JdkHttpConnector
JdkHttpConnector
logger.trace("Request body: {}", targetURL, requestDocAsString);
only one placeholder {} exists while two Strings are passed as arguments. Replace this line with
{}
logger.trace("Request body: {} {}", targetURL, requestDocAsString);
The text was updated successfully, but these errors were encountered:
c3c4d86
Added another placeholder in the format string because two arguments …
8141ffd
…are supplied. Fixes #42.
No branches or pull requests
In line 73 of
JdkHttpConnector
only one placeholder
{}
exists while two Strings are passed as arguments. Replace this line withThe text was updated successfully, but these errors were encountered: