Skip to content

Commit

Permalink
feat: less compact & shouting info dumping
Browse files Browse the repository at this point in the history
  • Loading branch information
eeriemyxi committed Oct 21, 2024
1 parent 2b47800 commit 099fa5d
Showing 1 changed file with 2 additions and 10 deletions.
12 changes: 2 additions & 10 deletions src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -361,19 +361,11 @@ async function main(): Promise<void> {
updated_version,
);

logger.info(
colors.bold.yellow("FETCHER EXIT CODE:"),
fetcher_exit_code,
);
logger.info(
colors.bold.yellow("UPDATER EXIT CODE:"),
updater_exit_code,
);
logger.info(
colors.yellow("The operation was"),
fetcher_exit_code + updater_exit_code == 0
? colors.bold.green("SUCCESSFUL.")
: colors.bold.red("UNSUCCESSFUL."),
? colors.bold.green("successful.")
: colors.bold.red("unsuccessful."),
);
logger.info(
colors.yellow("Updated version from"),
Expand Down

0 comments on commit 099fa5d

Please sign in to comment.