Register uncaught exception handler

Never miss an exception by using an uncaught exception handler.
This commit is contained in:
Romain Vimont 2018-01-31 19:50:45 +01:00
parent 8c4a454d68
commit 7ed334915e

View file

@ -36,7 +36,7 @@ public class ScrCpyServer {
try {
new EventController(device, connection).control();
} catch (IOException e) {
e.printStackTrace();
Ln.e("Exception from event controller", e);
}
}
}).start();
@ -52,12 +52,14 @@ public class ScrCpyServer {
}
public static void main(String... args) throws Exception {
Thread.setDefaultUncaughtExceptionHandler(new Thread.UncaughtExceptionHandler() {
@Override
public void uncaughtException(Thread t, Throwable e) {
Ln.e("Exception on thread " + t, e);
}
});
Options options = createOptions(args);
try {
scrcpy(options);
} catch (Throwable t) {
t.printStackTrace();
throw t;
}
scrcpy(options);
}
}