mirror of
https://github.com/oxen-io/session-android.git
synced 2024-12-24 08:47:46 +00:00
22 lines
639 B
Java
22 lines
639 B
Java
package org.thoughtcrime.securesms.logging;
|
|
|
|
import androidx.annotation.NonNull;
|
|
|
|
public class UncaughtExceptionLogger implements Thread.UncaughtExceptionHandler {
|
|
|
|
private static final String TAG = UncaughtExceptionLogger.class.getSimpleName();
|
|
|
|
private final Thread.UncaughtExceptionHandler originalHandler;
|
|
|
|
public UncaughtExceptionLogger(@NonNull Thread.UncaughtExceptionHandler originalHandler) {
|
|
this.originalHandler = originalHandler;
|
|
}
|
|
|
|
@Override
|
|
public void uncaughtException(Thread t, Throwable e) {
|
|
Log.e(TAG, "", e);
|
|
Log.blockUntilAllWritesFinished();
|
|
originalHandler.uncaughtException(t, e);
|
|
}
|
|
}
|