This is a Kotlin Multiplatform project targeting Android, iOS (on progress).
class SmartLogApp: Application() {
override fun onCreate() {
super.onCreate()
AppContainer.factory = Factory(this)
SmartLog.printers.add(LogCatPrinter())
}
} val intent = Intent(this, LogActivity::class.java)
startActivity(intent)SmartLog.v("LogViewModel", "test message")
SmartLog.i("LogViewModel", "test message")
SmartLog.w("LogViewModel", "test message")
SmartLog.e("LogViewModel", "test message")
SmartLog.wtf("LogViewModel", "test message")- filter log
- play/pause log
- auto scroll top


