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}")
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!)