Add logging to diagnose non-disappearing toasts (#7947)

For https://github.com/vector-im/element-web/issues/17667
pull/21833/head
David Baker 2022-03-02 14:30:04 +00:00 committed by GitHub
parent a39473810a
commit b789d252b9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 2 deletions

View File

@ -297,8 +297,9 @@ export default class DeviceListener {
} }
} }
logger.log("Old unverified sessions: " + Array.from(oldUnverifiedDeviceIds).join(',')); logger.debug("Old unverified sessions: " + Array.from(oldUnverifiedDeviceIds).join(','));
logger.log("New unverified sessions: " + Array.from(newUnverifiedDeviceIds).join(',')); logger.debug("New unverified sessions: " + Array.from(newUnverifiedDeviceIds).join(','));
logger.debug("Currently showing toasts for: " + Array.from(this.displayingToastsForDeviceIds).join(','));
// Display or hide the batch toast for old unverified sessions // Display or hide the batch toast for old unverified sessions
if (oldUnverifiedDeviceIds.size > 0) { if (oldUnverifiedDeviceIds.size > 0) {
@ -315,6 +316,7 @@ export default class DeviceListener {
// ...and hide any we don't need any more // ...and hide any we don't need any more
for (const deviceId of this.displayingToastsForDeviceIds) { for (const deviceId of this.displayingToastsForDeviceIds) {
if (!newUnverifiedDeviceIds.has(deviceId)) { if (!newUnverifiedDeviceIds.has(deviceId)) {
logger.debug("Hiding unverified session toast for " + deviceId);
hideUnverifiedSessionsToast(deviceId); hideUnverifiedSessionsToast(deviceId);
} }
} }