Skip to content

Commit 6d19307

Browse files
committed
use emojis as prefix
1 parent c005d4e commit 6d19307

1 file changed

Lines changed: 8 additions & 8 deletions

File tree

src/CLI.php

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,14 @@ abstract class CLI
2222
/** @var array PSR-3 compatible loglevels and their prefix, color, output channel */
2323
protected $loglevel = array(
2424
'debug' => array('', Colors::C_LIGHTGRAY, STDOUT),
25-
'info' => array('I: ', Colors::C_CYAN, STDOUT),
26-
'notice' => array('I: ', Colors::C_GREEN, STDOUT),
27-
'success' => array('S: ', Colors::C_GREEN, STDOUT),
28-
'warning' => array('W: ', Colors::C_BROWN, STDERR),
29-
'error' => array('E: ', Colors::C_RED, STDERR),
30-
'critical' => array('!: ', Colors::C_RED, STDERR),
31-
'alert' => array('!: ', Colors::C_RED, STDERR),
32-
'emergency' => array('!: ', Colors::C_RED, STDERR),
25+
'info' => array(' ', Colors::C_CYAN, STDOUT),
26+
'notice' => array(' ', Colors::C_CYAN, STDOUT),
27+
'success' => array(' ', Colors::C_GREEN, STDOUT),
28+
'warning' => array(' ', Colors::C_BROWN, STDERR),
29+
'error' => array(' ', Colors::C_RED, STDERR),
30+
'critical' => array(' ', Colors::C_LIGHTRED, STDERR),
31+
'alert' => array(' ', Colors::C_LIGHTRED, STDERR),
32+
'emergency' => array(' ', Colors::C_LIGHTRED, STDERR),
3333
);
3434

3535
/**

0 commit comments

Comments
 (0)