Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 4babf10f authored by Ricki Hirner's avatar Ricki Hirner
Browse files

Reduce logging importance

parent 6922f3c0
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line

buildscript {
    ext.kotlin_version = '1.1.3'
    ext.kotlin_version = '1.1.3-2'

    repositories {
        jcenter()
+1 −1
Original line number Diff line number Diff line
@@ -68,7 +68,7 @@ class CustomCertService: Service() {
        try {
            FileInputStream(keyStoreFile).use { trustedKeyStore.load(it, null) }
        } catch(e: Exception) {
            Constants.log.log(Level.SEVERE, "Couldn't initialize key store, creating in-memory key store", e)
            Constants.log.log(Level.INFO, "No persisent key store (yet), creating in-memory key store", e)
            try {
                trustedKeyStore.load(null, null)
            } catch(e: Exception) {