-
Notifications
You must be signed in to change notification settings - Fork 7.6k
Closed
Description
I'm using RxJava on Android and I've encountered issues with CompositeException. Because it collects throwables as Collection<Throwable> errors
the exceptions are not logged to the logcat output if there is an unhandled Exception in onError callback.
Here is a sample output:
2739:E/AndroidRuntime(14639): FATAL EXCEPTION: main
2740:E/AndroidRuntime(14639): rx.exceptions.OnErrorFailedException: Error occurred when trying to propagate error to Observer.onError
2741:E/AndroidRuntime(14639): at rx.observers.SafeSubscriber._onError(SafeSubscriber.java:182)
2742:E/AndroidRuntime(14639): at rx.observers.SafeSubscriber.onError(SafeSubscriber.java:103)
2743:E/AndroidRuntime(14639): at rx.internal.operators.NotificationLite.accept(NotificationLite.java:144)
2744:E/AndroidRuntime(14639): at rx.internal.operators.OperatorObserveOn$ObserveOnSubscriber.pollQueue(OperatorObserveOn.java:139)
2745:E/AndroidRuntime(14639): at rx.internal.operators.OperatorObserveOn$ObserveOnSubscriber.access$000(OperatorObserveOn.java:61)
2746:E/AndroidRuntime(14639): at rx.internal.operators.OperatorObserveOn$ObserveOnSubscriber$1.call(OperatorObserveOn.java:121)
2747:E/AndroidRuntime(14639): at rx.internal.schedulers.ScheduledAction.run(ScheduledAction.java:43)
2748:E/AndroidRuntime(14639): at android.os.Handler.handleCallback(Handler.java:730)
2749:E/AndroidRuntime(14639): at android.os.Handler.dispatchMessage(Handler.java:92)
2750:E/AndroidRuntime(14639): at android.os.Looper.loop(Looper.java:137)
2751:E/AndroidRuntime(14639): at android.app.ActivityThread.main(ActivityThread.java:5103)
2752:E/AndroidRuntime(14639): at java.lang.reflect.Method.invokeNative(Native Method)
2753:E/AndroidRuntime(14639): at java.lang.reflect.Method.invoke(Method.java:525)
2754:E/AndroidRuntime(14639): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:737)
2755:E/AndroidRuntime(14639): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:553)
2756:E/AndroidRuntime(14639): at dalvik.system.NativeStart.main(Native Method)
2757:E/AndroidRuntime(14639): Caused by: rx.exceptions.CompositeException: 2 exceptions occurred. See them in causal chain below.
2758:E/AndroidRuntime(14639): ... 16 more
That's it. No logs about real cause. I can wrap my onError code in try catch block and log the real cause, but I think this can be handled better by RxJava. What do you guys think?
chitrang200889
Metadata
Metadata
Assignees
Labels
No labels