crypto: Clean up some log lines

This commit is contained in:
Damir Jelić 2021-04-14 12:46:29 +02:00
parent 2805772d0a
commit 0afdcb35f1
1 changed files with 2 additions and 4 deletions

View File

@ -323,15 +323,13 @@ internal class DefaultCryptoService @Inject constructor(
return return
} }
isStarting.set(true) isStarting.set(true)
Timber.v("HELLLO WORLD STARTING CRYPTO")
try { try {
setRustLogger() setRustLogger()
olmMachine = OlmMachine(userId, deviceId!!, dataDir, deviceObserver) olmMachine = OlmMachine(userId, deviceId!!, dataDir, deviceObserver)
Timber.v("Successfully started up an Olm machine, identity keys: ${olmMachine?.identityKeys()}")
Timber.v("HELLLO WORLD STARTING $dataDir CRYPTO ${olmMachine?.identityKeys()}")
} catch (throwable: Throwable) { } catch (throwable: Throwable) {
Timber.v("HELLLO WORLD FAILED CRYPTO $throwable") Timber.v("Failed create an Olm machine: $throwable")
} }
// Open the store // Open the store