As we have used Log.e() for logging error with java code. I was looking for same functionality with Kotlin. Though i have found Logger class
val Log = Logger.getLogger(MainActivity::class.java.name)
Log.warning("Hello World")
It is showing log in android studio logcat.
But does there any way to print log in red color the same way Log.e() does?