File tree Expand file tree Collapse file tree
src/vs/platform/backup/electron-main Expand file tree Collapse file tree Original file line number Diff line number Diff 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 }
You can’t perform that action at this time.
0 commit comments