Skip to content

Commit 51ed6ba

Browse files
authored
Merge pull request #1065 from microsoft/benibenj/foolish-cod
Change vsce update notification from INFO to WARNING
2 parents 980d621 + 4335f9c commit 51ed6ba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ function main(task: Promise<any>): void {
4646

4747
task.catch(fatal).then(() => {
4848
if (latestVersion && semver.gt(latestVersion, pkg.version)) {
49-
log.info(`The latest version of ${pkg.name} is ${latestVersion} and you have ${pkg.version}.\nUpdate it now: npm install -g ${pkg.name}`);
49+
log.warn(`The latest version of ${pkg.name} is ${latestVersion} and you have ${pkg.version}.\nUpdate it now: npm install -g ${pkg.name}`);
5050
} else {
5151
token.cancel();
5252
}

0 commit comments

Comments
 (0)