Fixed logging context name

connection_type_change
nathan 2020-09-09 00:33:51 +02:00
parent b69f7a9772
commit 1838795987
1 changed files with 1 additions and 1 deletions

View File

@ -42,7 +42,7 @@ internal object Common {
}
internal val logger = KotlinLogging.logger(Common::class.java.simpleName)
internal val logger = KotlinLogging.logger("NetworkUtils")
fun getBoolean(property: String, defaultValue: Boolean): Boolean {
var value: String = System.getProperty(property, defaultValue.toString()) ?: return defaultValue