Skip to content

Commit

Permalink
Added another placeholder in the format string because two arguments …
Browse files Browse the repository at this point in the history
…are supplied. Fixes #42.
  • Loading branch information
Vincent Partington committed Apr 17, 2012
1 parent 21d17ad commit c3c4d86
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ public Document sendMessage(Document requestDocument, SoapAction soapAction) {

final String requestDocAsString = toString(requestDocument);
logger.trace("Sending request to {}", targetURL);
logger.trace("Request body: {}", targetURL, requestDocAsString);
logger.trace("Request body: {} {}", targetURL, requestDocAsString);
BufferedWriter bw = new BufferedWriter(
new OutputStreamWriter(
con.getOutputStream()));
Expand Down

0 comments on commit c3c4d86

Please sign in to comment.