All Downloads are FREE. Search and download functionalities are using the official Maven repository.

jvmMain.io.ktor.util.debug.IntellijIdeaDebugDetectorJvm.kt Maven / Gradle / Ivy

// ktlint-disable filename
/*
 * Copyright 2014-2021 JetBrains s.r.o and contributors. Use of this source code is governed by the Apache 2.0 license.
 */

package io.ktor.util.debug

import java.lang.management.*

internal actual object IntellijIdeaDebugDetector {
    actual val isDebuggerConnected: Boolean by lazy {
        try {
            ManagementFactory.getRuntimeMXBean()
                .inputArguments.toString()
                .contains("jdwp")
        } catch (error: Throwable) {
            false
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy