diff --git a/src/vs/workbench/services/textfile/common/textFileSaveParticipant.ts b/src/vs/workbench/services/textfile/common/textFileSaveParticipant.ts index a1adea6a4b06c..ab3cb0a0e8a69 100644 --- a/src/vs/workbench/services/textfile/common/textFileSaveParticipant.ts +++ b/src/vs/workbench/services/textfile/common/textFileSaveParticipant.ts @@ -52,7 +52,7 @@ export class TextFileSaveParticipant extends Disposable { const promise = saveParticipant.participate(model, context, progress, cts.token); await raceCancellation(promise, cts.token); } catch (err) { - this.logService.warn(err); + this.logService.error(err); } }