When using the Timber logger via
Timber.plant(new DatadogTree(logger));
the classname doesn't propagate in the logs. All logs are tagged with /DatadogTree: ...... | at .log(DatadogTree.kt:32) instead of the actual tag(class).
If I use the DataDog logger directly it works. It also works if I plant the Timber.DebugTree with Timber.plant(new Timber.DebugTree());
This is happening on 1.7.1 (and prior).
When using the Timber logger via
Timber.plant(new DatadogTree(logger));the classname doesn't propagate in the logs. All logs are tagged with
/DatadogTree: ...... | at .log(DatadogTree.kt:32)instead of the actual tag(class).If I use the DataDog logger directly it works. It also works if I plant the Timber.DebugTree with
Timber.plant(new Timber.DebugTree());This is happening on 1.7.1 (and prior).