Aug 25, 2017 · 1 min read
Awesome article! I like it a lot. I have a question, when I use AppLogger.e(“message”) in a presenter (LoginPresenter) that will print E/AppLogger: message, but if I use Timber.e(“message”) then I’ll see E/LoginPresenter: message
So, using AppLogger.d we lost the feature of Timber to print the class’s name. What do you think about this?
And another one, the TAG field in every class, it is really neccesary? I mean, if the class’s name change, you have to change it too. Thanks!