Skip to content

Commit

Permalink
fix: update error logging colors for task details
Browse files Browse the repository at this point in the history
  • Loading branch information
yannbf committed Dec 11, 2024
1 parent 133a414 commit 750a57f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/task.ts
Original file line number Diff line number Diff line change
Expand Up @@ -484,7 +484,7 @@ async function run() {
} catch (err) {
invariant(err instanceof Error);
logger.error(
`Error running task ${picocolors.bold(getTaskKey(task))} for ${picocolors.bgMagenta(picocolors.bold(details.key))}:`
`Error running task ${picocolors.bold(getTaskKey(task))} for ${picocolors.bgCyan(picocolors.white(details.key))}:`
);
logger.error(JSON.stringify(err, null, 2));

Expand Down

0 comments on commit 750a57f

Please sign in to comment.