In line 73 of 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);