Logger.DEFAULT uses an SLF4J logging framework. For Native targets, set this property to Logger.SIMPLE.
The level property specifies the logging level.
Extra
To see log displayed on Logcat you should use Logger.SIMPLE, but it is possible to create a CustomHttpLogger to customize logger messages. Here the CustomHttpLogger class:
class CustomHttpLogger : Logger { override fun log(message: String) { Log.d("loggerTag", message) } }