diff --git a/extensions/json/client/src/colorDecorators.ts b/extensions/json/client/src/colorDecorators.ts index 6fecd50facb..f1caaea3ee1 100644 --- a/extensions/json/client/src/colorDecorators.ts +++ b/extensions/json/client/src/colorDecorators.ts @@ -134,7 +134,6 @@ export function activateColorDecorations(decoratorProvider: (uri: string) => The const colorPattern = /^#[0-9A-Fa-f]{3,8}$/; function hex2CSSColor(hex: string): string { - console.log(hex); if (!hex || !colorPattern.test(hex)) { return null; }