Filter exception

This commit is contained in:
M66B 2019-12-05 13:25:59 +01:00
parent 1e07047c38
commit 13ece09df0
1 changed files with 16 additions and 0 deletions

View File

@ -422,6 +422,22 @@ public class Log {
*/
return false;
if (ex instanceof RuntimeException &&
ex.getMessage() != null &&
ex.getMessage().startsWith("Could not get application info"))
return false;
/*
java.lang.RuntimeException: Could not get application info.
java.lang.RuntimeException: Could not get application info.
  at CH0.a(PG:11)
  at org.chromium.content.browser.ChildProcessLauncherHelperImpl.a(PG:34)
  at Fn2.run(PG:5)
  at android.os.Handler.handleCallback(Handler.java:874)
  at android.os.Handler.dispatchMessage(Handler.java:100)
  at android.os.Looper.loop(Looper.java:198)
  at android.os.HandlerThread.run(HandlerThread.java:65)
*/
if (ex.getMessage() != null &&
(ex.getMessage().startsWith("Bad notification posted") ||
ex.getMessage().contains("ActivityRecord not found") ||