Skip to content

Commit 3055f67

Browse files
committed
remove console.logs
1 parent 47e7e4c commit 3055f67

1 file changed

Lines changed: 0 additions & 2 deletions

File tree

src/vs/platform/backup/electron-main/backupMainService.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,6 @@ export class BackupMainService implements IBackupMainService {
252252
// Validate Workspaces
253253
for (let workspace of rootWorkspaces) {
254254
if (!isWorkspaceIdentifier(workspace)) {
255-
console.log('not a workspace identifer');
256255
return []; // wrong format, skip all entries
257256
}
258257

@@ -267,7 +266,6 @@ export class BackupMainService implements IBackupMainService {
267266
if (workspace.configPath.scheme !== Schemas.file || await exists(workspace.configPath.fsPath)) {
268267
result.push(workspace);
269268
} else {
270-
console.log('target workspace missing');
271269
// If the workspace has backups, but the target workspace is missing, convert backups to empty ones
272270
await this.convertToEmptyWindowBackup(backupPath);
273271
}

0 commit comments

Comments
 (0)