Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion src/fetchMOTD.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,9 @@ export function fetchMOTD(): void {
configstore.set("motd.fetched", Date.now());
})
.catch((err) => {
utils.logWarning("Unable to fetch the CLI MOTD and remote config.");
utils.logWarning(
"Unable to fetch the CLI MOTD and remote config. This is not a fatal error, but may indicate an issue with your network connection."
);
logger.debug(`Failed to fetch MOTD ${err}`);
});
}
Expand Down