Skip to content

Commit 6e3881d

Browse files
authored
fix: make logging readable in Windows Command Prompt #573
Logging text in blue is unfortunately not readable on the Windows Command Prompt with default color settings. Cyan, however, is.
1 parent 1057b23 commit 6e3881d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/hooks/tapDoneToAsyncGetIssues.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ function tapDoneToAsyncGetIssues(
2929
try {
3030
if (await isPending(issuesPromise)) {
3131
hooks.waiting.call(stats.compilation);
32-
configuration.logger.issues.log(chalk.blue('Issues checking in progress...'));
32+
configuration.logger.issues.log(chalk.cyan('Issues checking in progress...'));
3333
} else {
3434
// wait 10ms to log issues after webpack stats
3535
await wait(10);

0 commit comments

Comments
 (0)