Skip to content

Commit 4ba12db

Browse files
chore(logging): change warn color to yellow instead of red (#845)
1 parent 10fc5ac commit 4ba12db

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib/outputs.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ export function error(options: SimpleLogOptions) {
3434

3535
export function warning(options: SimpleLogOptions) {
3636
internalLog({
37-
[options.stdout ? 'stdoutOutput' : 'stderrOutput']: [chalk.rgb(254, 90, 29).bold('Warning:'), options.message],
37+
[options.stdout ? 'stdoutOutput' : 'stderrOutput']: [chalk.yellow.bold('Warning:'), options.message],
3838
});
3939
}
4040

0 commit comments

Comments
 (0)