Skip to content
This repository has been archived by the owner on Jun 30, 2022. It is now read-only.

Commit

Permalink
Add more information about exception in logger message
Browse files Browse the repository at this point in the history
  • Loading branch information
Beatrycze Kmiec committed Jul 5, 2017
1 parent 1781b0d commit 09644b7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ private void init(URL url, String httpproxyhost, String httpproxyport, String ht
this.myInterpreter = ImageFileFormat.getInterpreter(url, httpproxyhost, httpproxyport, httpproxyuser, httpproxypassword);
LOGGER.debug("url: " + url);
} catch (Exception e) {
LOGGER.error("Error while getting ImageInterpreter");
LOGGER.error("Error while getting ImageInterpreter. Reason: " + e.getMessage());
throw new ImageManagerException(e);
}

Expand Down

0 comments on commit 09644b7

Please sign in to comment.