diff --git a/idea/jvm-debugger/jvm-debugger-coroutine/src/org/jetbrains/kotlin/idea/debugger/coroutine/proxy/AsyncStackTraceContext.kt b/idea/jvm-debugger/jvm-debugger-coroutine/src/org/jetbrains/kotlin/idea/debugger/coroutine/proxy/AsyncStackTraceContext.kt index b84f20ad54a..6327e8576c5 100644 --- a/idea/jvm-debugger/jvm-debugger-coroutine/src/org/jetbrains/kotlin/idea/debugger/coroutine/proxy/AsyncStackTraceContext.kt +++ b/idea/jvm-debugger/jvm-debugger-coroutine/src/org/jetbrains/kotlin/idea/debugger/coroutine/proxy/AsyncStackTraceContext.kt @@ -93,7 +93,6 @@ class AsyncStackTraceContext( // should add a check for SUSPEND coroutines val lineNumber = context.invokeMethodAsInt(instance,"getLineNumber") ?: 0 val locationClass = context.findClassSafe(className) ?: return null - log.warn("Got location of ${className}.${methodName}:${lineNumber} in ${locationClass}") return GeneratedLocation(context.debugProcess, locationClass, methodName, lineNumber) }