https://github.com/sanjaydevtech/simple-log
Simple light weight logging library for Android
https://github.com/sanjaydevtech/simple-log
android android-log java log logging-library
Last synced: 11 months ago
JSON representation
Simple light weight logging library for Android
- Host: GitHub
- URL: https://github.com/sanjaydevtech/simple-log
- Owner: SanjayDevTech
- License: mit
- Created: 2020-11-02T13:44:46.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2020-11-03T06:52:35.000Z (over 5 years ago)
- Last Synced: 2025-01-25T16:44:31.764Z (about 1 year ago)
- Topics: android, android-log, java, log, logging-library
- Language: Java
- Homepage: https://sanjaydevtech.github.io/simple-log/
- Size: 137 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## Simple Log
Simple light weight logging library for android apps
[  ](https://bintray.com/sanjaydevtech/log/com.sanjaydevtech.log/_latestVersion)
### Inspiration
- [DLog](https://github.com/ymegane/DLog)
### 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
```gradle
implementation 'com.sanjaydevtech.log:log:'
```
### Using in code
```java
Cout.d("Logged");
```
Refer [Getting Started](https://github.com/SanjayDevTech/simple-log/wiki/Getting-Started) for all details
### License
MIT