Popularity
4.7
Stable
Activity
0.0
Stable
489
12
28

Description

Traceur enables easier debugging of RxJava2 exceptions, by appending the source of any asynchronous calls to the original exception.

An example RxJava exception:

The same exception with Traceur enabled:

Notice that the call site of the asynchronous call is linked in the stack trace (SplashPresenter).

RxJava1 had a similar feature included by default, RxJavaHooks.enableAssemblyTracking(), but RxJava2 has no such feature unfortunately.

Programming language: Java
Tags: Debug     RxAndroid     RxJava     Observables    
Latest version: v1.0.1

Traceur alternatives and similar packages

Based on the "Debug" category.
Alternatively, view Traceur alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of Traceur or a related project?

Add another 'Debug' Package

README

Traceur

Traceur enables easier debugging of RxJava2 exceptions, by appending the source of any asynchronous calls to the original exception.

An example RxJava exception: [](assets/stacktrace-without-traceur.png)

The same exception with Traceur enabled: [](assets/stacktrace-with-traceur.png)

Notice that the call site of the asynchronous call is linked in the stack trace (SplashPresenter).

RxJava1 had a similar feature included by default, RxJavaHooks.enableAssemblyTracking(), but RxJava2 has no such feature unfortunately.

Usage

Enable logging:

Traceur.enableLogging();

Disable logging:

Traceur.disableLogging();

Download

compile 'com.tspoon.traceur:traceur:1.0.1'

Thanks

Thanks to David Karnok - this project is largely just an enhancement of his RxJava2Extensions project, making it slightly easier to consume as a developer

License

Copyright 2017 Oisín O'Neill

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

   http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.


*Note that all licence references and agreements mentioned in the Traceur README section above are relevant to that project's source code only.