Skip to content

Commit b625202

Browse files
committed
fix: #119 replace ext notification with logger
1 parent fa7e102 commit b625202

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/extension.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ export async function activate(context: ExtensionContext): Promise<void> {
3434
const [, errorPaths] = await parseFiles(config, { parseAll: true }); // Cache Parsed CSS Vars for all Root folders
3535
if (errorPaths.length > 0) {
3636
const relativePaths = errorPaths;
37-
window.showWarningMessage(
37+
LOGGER.error(
3838
"Failed to parse CSS variables in files:",
3939
`\n\n${relativePaths.join("\n\n")}`
4040
);

0 commit comments

Comments
 (0)