Hello, Im using retrofit + koltin serializer and Kotlin Serialization Converter (Jake library). I want to see request and responses on the logcat. I added a convert into retrofit
Copy code
private val contentType = "application/json".toMediaType()
private val json = Json {
prettyPrint = true
ignoreUnknownKeys = true
}
..
..addConverterFactory(json.asConverterFactory(contentType))
But i cannot see the logs on logcat screen. Any idea how to display it?