1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-17 00:33:44 +00:00

remove debug logging from sync operations

This commit is contained in:
Kyle Spearrin
2017-09-20 12:33:18 -04:00
parent fd538494c0
commit b48c86a572
3 changed files with 1 additions and 65 deletions

View File

@@ -785,21 +785,15 @@ var bg_isBackground = true,
function fullSync(override) {
override = override || false;
log('check fullSync - ' + override);
bg_syncService.getLastSync(function (lastSync) {
log('got last sync - ' + lastSync);
var syncInternal = 6 * 60 * 60 * 1000; // 6 hours
var lastSyncAgo = new Date() - lastSync;
log('lastSyncAgo - ' + lastSyncAgo);
if (override || !lastSync || lastSyncAgo >= syncInternal) {
log('let\'s do the fullSync');
bg_syncService.fullSync(override || false, function () {
log('done with fullSync');
scheduleNextSync();
});
}
else {
log('don\'t need to sync right now');
scheduleNextSync();
}
});
@@ -807,21 +801,12 @@ var bg_isBackground = true,
function scheduleNextSync() {
if (syncTimeout) {
log('clearing syncTimeout');
clearTimeout(syncTimeout);
}
else {
log('don\'t need to clear syncTimeout');
}
log('scheduleNextSync');
syncTimeout = setTimeout(fullSync, 5 * 60 * 1000); // check every 5 minutes
}
function log(msg) {
console.log(new Date() + ' - Background: ' + msg);
}
// Bootstrap
bg_environmentService.setUrlsFromStorage(function () {