fix typo in comment and reinstate logging of variables (#30231)

This commit is contained in:
Hubert Chathi 2025-06-30 17:09:50 -04:00 committed by GitHub
parent 3d56aa7ff6
commit 37df62aa4e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -406,9 +406,15 @@ export default class DeviceListener {
}
} else {
// If we get here, then we are verified, have key backup, and
// 4S, but crypto.isCrossSigningReady returned false, which
// 4S, but crypto.isSecretStorageReady returned false, which
// means that 4S doesn't have all the secrets.
logSpan.warn("4S is missing secrets");
logSpan.warn("4S is missing secrets", {
crossSigningReady,
secretStorageReady,
allCrossSigningSecretsCached,
isCurrentDeviceTrusted,
defaultKeyId,
});
showSetupEncryptionToast(SetupKind.KEY_STORAGE_OUT_OF_SYNC_STORE);
}
} else {