Better logging for sync sent messages, and new (disappeared) msgs

FREEBIE
This commit is contained in:
Scott Nonnenberg 2017-08-03 18:15:47 -07:00
parent ad8cb870d9
commit 92ba295d52
3 changed files with 15 additions and 7 deletions

View file

@ -518,7 +518,15 @@
catch (e) {
handleError(e);
}
}, handleError);
}, function(error) {
console.log('handleDataMessage: Message', message.idForLogging(), 'was deleted');
if (confirm) {
confirm();
}
return resolve();
});
}, handleError);
}, handleError);
});