Only warn when getting an error in safeDestroy

This commit is contained in:
JC Brand 2022-04-08 10:58:06 +02:00
parent b331405658
commit a17e8bea1c

View File

@ -101,7 +101,7 @@ const MessageMixin = {
try {
this.destroy();
} catch (e) {
log.error(e);
log.warn(`safeDestroy: ${e}`);
}
},