Filter OOM error

pull/189/head
M66B 4 years ago
parent b89901aace
commit f4544885fc

@ -511,7 +511,8 @@ public class Log {
if (!isSupportedDevice())
return false;
if (ex instanceof OutOfMemoryError)
if (ex instanceof OutOfMemoryError ||
ex.getCause() instanceof OutOfMemoryError)
return false;
if (ex instanceof RemoteException)

Loading…
Cancel
Save