How do I integrate Shipbook remote logging platform with Timber in android?
I've done the following code:
Timber.plant(new Timber.Tree() {
@Override
protected void log(int priority, @Nullable String tag, @NotNull String message, @Nullable Throwable t) {
Log.message(tag, message, priority, t);
}
});
The problem is that the Loglytics in Shipbook is seeing all logs as the same log and isn't differentiating between logs.