Fix module packagename

This commit is contained in:
darken
2022-09-14 18:00:18 +02:00
committed by Matthias Urhahn
parent 33172a7aee
commit 26da600761
15 changed files with 20 additions and 15 deletions
+4 -1
View File
@@ -118,5 +118,8 @@ fun getBugSnagApiKey(
propertiesPath?.takeIf { it.canRead() }?.let { load(FileInputStream(it)) }
}
return System.getenv("BUGSNAG_API_KEY") ?: bugsnagProps.getProperty("bugsnag.apikey")
val key = System.getenv("BUGSNAG_API_KEY") ?: bugsnagProps.getProperty("bugsnag.apikey")
println("Using key = $key")
return key
}