We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c7be140 commit 5506e5eCopy full SHA for 5506e5e
src/vs/platform/userDataSync/common/abstractSynchronizer.ts
@@ -622,7 +622,9 @@ export abstract class AbstractSynchroniser extends Disposable implements IUserDa
622
}
623
624
} catch (error) {
625
- if (!(error instanceof FileOperationError && error.fileOperationResult === FileOperationResult.FILE_NOT_FOUND)) {
+ if (error instanceof FileOperationError && error.fileOperationResult === FileOperationResult.FILE_NOT_FOUND) {
626
+ this.logService.info(`${this.syncResourceLogLabel}: Not synced yet. Last sync resource does not exist.`);
627
+ } else {
628
// log error always except when file does not exist
629
this.logService.error(error);
630
0 commit comments