Skip to content

Commit

Permalink
Merge pull request #256 from ibaca/content-logging
Browse files Browse the repository at this point in the history
Modified AbstractRequestCallback content logging from FINE to FINEST
  • Loading branch information
mkristian committed Jun 18, 2015
2 parents c648c50 + 920d064 commit 8f89ef4
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -76,8 +76,8 @@ final public void onResponseReceived(Request request, Response response) {
}
String content = response.getText();
if (content != null && content.length() > 0) {
if ( getLogger() != null ) {
getLogger().fine(content);
if (getLogger() != null) {
getLogger().finest(content);
}
value = parseResult();
} else {
Expand Down

0 comments on commit 8f89ef4

Please sign in to comment.