Don't log whole QR code

This commit is contained in:
Hugh Nimmo-Smith 2022-10-18 12:11:41 +01:00
parent 376cd1cb36
commit 916ae654e7
1 changed files with 1 additions and 1 deletions

View File

@ -76,7 +76,7 @@ class QrCodeLoginViewModel @AssistedInject constructor(
} }
private fun handleOnQrCodeScanned(action: QrCodeLoginAction.OnQrCodeScanned) { private fun handleOnQrCodeScanned(action: QrCodeLoginAction.OnQrCodeScanned) {
Timber.tag(TAG).d("Scanned code: ${action.qrCode}") Timber.tag(TAG).d("Scanned code of length ${action.qrCode.length}")
val rendezvous = try { Rendezvous.buildChannelFromCode(action.qrCode) } catch (t: Throwable) { val rendezvous = try { Rendezvous.buildChannelFromCode(action.qrCode) } catch (t: Throwable) {
Timber.tag(TAG).e(t, "Error occurred during sign in") Timber.tag(TAG).e(t, "Error occurred during sign in")