Skip to content

Commit

Permalink
Warn for remote exception (support info)
Browse files Browse the repository at this point in the history
  • Loading branch information
M66B committed Feb 12, 2014
1 parent bd70443 commit 16b0987
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/biz/bokhorst/xprivacy/Util.java
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,8 @@ else if (ex instanceof IOException)
priority = Log.WARN;
else if (ex instanceof NetworkOnMainThreadException)
priority = Log.WARN;
else if (ex instanceof RemoteException)
priority = Log.WARN;
else if (ex instanceof SecurityException)
priority = Log.WARN;
else if (ex instanceof SocketException)
Expand Down

0 comments on commit 16b0987

Please sign in to comment.