From 9aeeee4c1a8aeb64c73cd6b41ff8121fd45fb776 Mon Sep 17 00:00:00 2001 From: Johannes Rieken Date: Fri, 21 Oct 2016 10:42:58 +0200 Subject: [PATCH] don't project failures to console, fixes #13785 --- extensions/typescript/src/utils/projectStatus.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extensions/typescript/src/utils/projectStatus.ts b/extensions/typescript/src/utils/projectStatus.ts index 0a177bb65b3..66275ac53f2 100644 --- a/extensions/typescript/src/utils/projectStatus.ts +++ b/extensions/typescript/src/utils/projectStatus.ts @@ -147,7 +147,7 @@ export function create(client: ITypescriptServiceClient, isOpen: (path: string) } }); }).catch(err => { - console.log(err); + client.warn(err); }); }