Skip to content

Commit b9c0846

Browse files
committed
Reset the color instead of setting it to light gray for debugging
Otherwise, the debugging information is impossible to read on a light colored background. At least, for my 46 year old eyes.
1 parent ff9e6ec commit b9c0846

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/CLI.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ abstract class CLI
2121

2222
/** @var array PSR-3 compatible loglevels and their prefix, color, output channel */
2323
protected $loglevel = array(
24-
'debug' => array('', Colors::C_LIGHTGRAY, STDOUT),
24+
'debug' => array('', Colors::C_RESET, STDOUT),
2525
'info' => array('', Colors::C_CYAN, STDOUT),
2626
'notice' => array('', Colors::C_CYAN, STDOUT),
2727
'success' => array('', Colors::C_GREEN, STDOUT),

0 commit comments

Comments
 (0)