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

com.gabrielfeo.develocity.api.internal.SystemProperties.kt Maven / Gradle / Ivy

The newest version!
package com.gabrielfeo.develocity.api.internal

internal var systemProperties: SystemProperties = RealSystemProperties

internal interface SystemProperties {
    val userHome: String?
    val logLevel: String?
}

internal object RealSystemProperties : SystemProperties {
    override val userHome: String? = System.getProperty("user.home")
    override val logLevel: String? = System.getProperty(RealLoggerFactory.LOG_LEVEL_SYSTEM_PROPERTY)
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy