From b62520219afcccbe66f8c6cacaa6ea24112ff9d4 Mon Sep 17 00:00:00 2001 From: Phoenix Date: Wed, 25 Sep 2024 01:19:08 +0530 Subject: [PATCH] fix: #119 replace ext notification with logger --- src/extension.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/extension.ts b/src/extension.ts index 0165504..e8f6c27 100644 --- a/src/extension.ts +++ b/src/extension.ts @@ -34,7 +34,7 @@ export async function activate(context: ExtensionContext): Promise { const [, errorPaths] = await parseFiles(config, { parseAll: true }); // Cache Parsed CSS Vars for all Root folders if (errorPaths.length > 0) { const relativePaths = errorPaths; - window.showWarningMessage( + LOGGER.error( "Failed to parse CSS variables in files:", `\n\n${relativePaths.join("\n\n")}` );