diff --git a/packages/lwc-language-server/src/javascript/compiler.ts b/packages/lwc-language-server/src/javascript/compiler.ts index 89b5e918..22991527 100644 --- a/packages/lwc-language-server/src/javascript/compiler.ts +++ b/packages/lwc-language-server/src/javascript/compiler.ts @@ -160,7 +160,6 @@ export function toVSCodeRange(babelRange: SourceLocation): Range { } export function extractAttributes(metadata: Metadata, uri: string): { privateAttributes: AttributeInfo[]; publicAttributes: AttributeInfo[] } { - console.log('I hit here'); const publicAttributes: AttributeInfo[] = []; const privateAttributes: AttributeInfo[] = []; for (const x of getProperties(metadata)) {