Skip to content
Sanjay Developer edited this page Nov 3, 2020 · 2 revisions

Simple Log

Simple light weight logging library for android apps

Download

Inspiration

Why Simple Log

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

Benefits

  • TAG will be created automatically
  • You can even hide logging in production mode

Adding dependency

implementation 'com.sanjaydevtech.log:log:<latest_version>'

Using in code

Cout.d("Logged");

Refer Getting Started

License

MIT

Clone this wiki locally