mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
[debugger] no need to compute text if debug logger is not enabled
GitOrigin-RevId: 4b5c1ff6c4fec130edc05b84968dd04eaaeeda57
This commit is contained in:
committed by
intellij-monorepo-bot
parent
b32204d5c6
commit
2dd1692215
+3
-1
@@ -38,7 +38,9 @@ abstract class SuspendContextCommandImpl protected constructor(open val suspendC
|
||||
}
|
||||
|
||||
invokeWithChecks(suspendContext) {
|
||||
LOG.debug("Executing suspend-context-command: $this")
|
||||
if (LOG.isDebugEnabled) {
|
||||
LOG.debug("Executing suspend-context-command: $this")
|
||||
}
|
||||
contextActionSuspend(suspendContext)
|
||||
}
|
||||
check(resetContinuation(null) == null) { "Continuation is not null after resume" }
|
||||
|
||||
Reference in New Issue
Block a user