krypton-org / krypton-android

Krypton client for Android applications and the JVM.
MIT License
0 stars 0 forks source link

Use a logger library #2

Closed nicobao closed 4 years ago

nicobao commented 4 years ago

Instead of using plain System.out.println/err, go for a proper logger. Logging is indeed a functionality that shall be delegated to the user of your library. Use a logging facade like SLF4j or Apache Commons Logging. I have more experience with SLF4j.

jrebecchi commented 4 years ago

System.out.println/err is only used in tests, I guess it is not needed.