Skip to content

Instantly share code, notes, and snippets.

View aalap03's full-sized avatar

aalap patel aalap03

  • Canada
View GitHub Profile
@kaushikgopal
kaushikgopal / LogExOnlySubscriber.java
Last active February 1, 2022 16:29
RxJava log exception only subscriber
public static class LogExOnlySubscriber<T> extends Subscriber<T> {
@Override
public void onCompleted() {
}
@Override
public void onError(Throwable ex) {
Timber.e(ex, "Your RX IZ FAILING YO!");
}