为什么在从Kotlin调用方法时,在logcat中看不到任何有用的东西?

我有这个代码:

import org.json.JSONObject ... Log.d("log", "I see this log message") val jsonData : JSONObject = JSONObject("NOT|JSON") Log.d("log", "I don't get here but don't see any exception logged") 

我不希望看到第二个日志消息,因为JSONObject调用将失败。 但是我没有看到有什么记录来表明失败的发生。 在异步回调中发生这种情况。 任何想法?