Timber: Simple logging API for android
--
I hope I don’t need to tell you, why logging is an essential part of software development. It provides developers and support teams with special glasses which enable them to see what the application code is really doing.
A lot of bugs can be avoided directly by writing log statements.
So, I am tired of creating a LOG_TAG
in every android component and calling Log.d(LOG_TAG, “this and that with” + this);
Thanks to Jake Wharton’s library Timber, logging is now extremely simple and you can directly log for crash…