don't project failures to console, fixes #13785

This commit is contained in:
Johannes Rieken
2016-10-21 10:42:58 +02:00
parent b00c572927
commit 9aeeee4c1a

View File

@@ -147,7 +147,7 @@ export function create(client: ITypescriptServiceClient, isOpen: (path: string)
}
});
}).catch(err => {
console.log(err);
client.warn(err);
});
}