JakeWharton / timber

A logger with a small, extensible API which provides utility on top of Android's normal Log class.
https://jakewharton.github.io/timber/docs/5.x/
Apache License 2.0
10.46k stars 962 forks source link

Can this log without blocking the calling thread? #460

Closed sarimmehdi closed 2 years ago

sarimmehdi commented 2 years ago

The standard log blocks the calling thread. I want too know if this one can do logging without blocking the calling thread

JakeWharton commented 2 years ago

No. All of the work has been done by the time the Tree is called and there's no point doing a context switch.