Skip to content

Commit

Permalink
Use yellow for warning logs in ANSI CLI
Browse files Browse the repository at this point in the history
Signed-off-by: Eric Lippmann <eric.lippmann@netways.de>
  • Loading branch information
emilv authored and lippserd committed Sep 1, 2015
1 parent 9356912 commit e3ea0e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion library/Icinga/Application/Logger/Writer/StdoutWriter.php
Expand Up @@ -36,7 +36,7 @@ public function log($severity, $message)
$color = 'red';
break;
case Logger::WARNING:
$color = 'orange';
$color = 'yellow';
break;
case Logger::INFO:
$color = 'green';
Expand Down

0 comments on commit e3ea0e5

Please sign in to comment.