Skip to content

Commit c33d4b5

Browse files
committed
Fixed LSP message pollution by URL fetch failures
1 parent 2965b13 commit c33d4b5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/css-variables-language-server/src/CSSVariableManager.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ export default class CSSVariableManager {
110110
filePath: url,
111111
});
112112
} catch (err) {
113-
console.log(err, `cannot fetch data from ${url}`);
113+
console.error(err, `cannot fetch data from ${url}`);
114114
}
115115
})
116116
);

0 commit comments

Comments
 (0)