Don't log whole QR code
This commit is contained in:
parent
376cd1cb36
commit
916ae654e7
|
@ -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")
|
||||||
|
|
Loading…
Reference in New Issue