How to print log in compose

11.8k Views Asked by At

I want to print some logs for debug reason, it seems the print and Timber are all not work with compose, what's the alternative choice?

2

There are 2 best solutions below

0
Muthukrishnan Rajendran On

Timber or Log or println all work fine in Compose, If Timber is not worked, then check did you initialize Timber.

1
Gianluca Veschi On

Initialize Timber as

if (BuildConfig.DEBUG) {
   Timber.plant(DebugTree)
}

inside Application::onCreate() method