commit 0aa429c29b1462552106740497128c34dc7f543e parent 0ac142f46c3260a148a8799aae63c5df37cafdfb Author: rhunk <101876869+rhunk@users.noreply.github.com> Date: Sun, 11 Aug 2024 23:51:52 +0200 refactor(app/e2ee): failure log Diffstat:
M | app/src/main/kotlin/me/rhunk/snapenhance/e2ee/E2EEImplementation.kt | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app/src/main/kotlin/me/rhunk/snapenhance/e2ee/E2EEImplementation.kt b/app/src/main/kotlin/me/rhunk/snapenhance/e2ee/E2EEImplementation.kt @@ -42,7 +42,7 @@ class E2EEImplementation ( runCatching { File(e2eeFolder, "$friendId.key").readBytes() }.onFailure { - context.log.error("Failed to read shared secret key", it) + context.log.warn("Failed to read shared secret key: ${it.message}") }.getOrNull() } }