We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8784f9f commit f66b65eCopy full SHA for f66b65e
src/fetchMOTD.ts
@@ -51,7 +51,9 @@ export function fetchMOTD(): void {
51
configstore.set("motd.fetched", Date.now());
52
})
53
.catch((err) => {
54
- utils.logWarning("Unable to fetch the CLI MOTD and remote config.");
+ utils.logWarning(
55
+ "Unable to fetch the CLI MOTD and remote config. This is not a fatal error, but may indicate an issue with your network connection."
56
+ );
57
logger.debug(`Failed to fetch MOTD ${err}`);
58
});
59
}
0 commit comments