Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/main/java/com/force/api/http/Http.java
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ public static final HttpResponse send(HttpRequest req) {
// it indicates that SF objects were not changed since the time specified in the "If-Modified-Since" header
return new HttpResponse().setResponseCode(code);
} else {
logger.info("Bad response code: {} on request: {}", code, req);
logger.info("Bad response code: {} on request: {} {}", code, req.getMethod(), req.getUrl());
return new HttpResponse().setString(
new String(readResponse(conn.getErrorStream()), "UTF-8")).setResponseCode(code);
}
Expand Down