Simple light weight logging library for android apps
You may think you can use android.util.Log class. But how many times you create TAG field in each Activity or Fragment. The default log library will also printed in production package(Which can put you in danger)
To avoid these difficulties and some boilerplate code, I created this Simple Log
implementation 'com.sanjaydevtech.log:log:<latest_version>'
Cout.d("Logged");
Refer Getting Started for all details
MIT