Skip to content

Commit

Permalink
fix: #119 replace ext notification with logger
Browse files Browse the repository at this point in the history
  • Loading branch information
phoenisx committed Sep 24, 2024
1 parent fa7e102 commit b625202
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export async function activate(context: ExtensionContext): Promise<void> {
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")}`
);
Expand Down

0 comments on commit b625202

Please sign in to comment.