Skip to content

Commit

Permalink
Avoid double logging GlideException errors.
Browse files Browse the repository at this point in the history
Fixes #2266.
  • Loading branch information
sjudd committed Aug 18, 2017
1 parent 73a8e01 commit 9d7b8d9
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,6 @@ public List<Exception> getRootCauses() {
* complete stack traces.
*/
public void logRootCauses(String tag) {
Log.e(tag, getClass() + ": " + getMessage());
List<Exception> causes = getRootCauses();
for (int i = 0, size = causes.size(); i < size; i++) {
Log.i(tag, "Root cause (" + (i + 1) + " of " + size + ")", causes.get(i));
Expand Down

0 comments on commit 9d7b8d9

Please sign in to comment.