[html] remove console.log

This commit is contained in:
Martin Aeschlimann 2016-10-28 10:38:15 +02:00
parent 31d39b0a37
commit 603bf23f4a

View file

@ -170,7 +170,6 @@ function validateTextDocument(textDocument: TextDocument): void {
if (embeddedLanguages) {
let embeddedLanguageIds = hasEmbeddedContent(languageService, textDocument, htmlDocument, embeddedLanguages);
let p = { uri: textDocument.uri, version: textDocument.version, embeddedLanguageIds };
console.log(JSON.stringify(p));
connection.sendNotification(EmbeddedContentChangedNotification.type, p);
}
}