db.syncable.on('statusChanged', (status, url) => {
console.log (`Url ${url} is now ${Dexie.Syncable.StatusTexts[status]}`);
});
/* Sample console output:
Url https://remote.server.com/syncRoute is now OFFLINE
Url https://remote.server.com/syncRoute is now CONNECTING
Url https://remote.server.com/syncRoute is now CONNECTED
*/