thunderbiscuit / padawan-wallet

The bitcoin wallet trainer on Android.
https://padawanwallet.com/
Apache License 2.0
116 stars 51 forks source link

Remove the use of Timber for logging #110

Closed thunderbiscuit closed 3 years ago

thunderbiscuit commented 3 years ago

The app uses Timber for logging, and I just don't think it adds anything for us right now on top of the basic logging.

This issue is to remove the dependency on Timber, and clean up the calls to the logger all over the app (there are many!)

// currently
Timber.i("[PADAWANLOGS] Number of transactions: ${txHistory.size}")

// update to
Log.i("Padalogs", "Number of transactions: ${txHistory.size}")
thunderbiscuit commented 3 years ago

Done with b1d7ec24d1f7be9dde7590ffabd039be9ee2130c. Thanks @mbcse!