Skip to content

Commit

Permalink
As Robo does, print NOTICE log messages all the time. LogLevel::INFO …
Browse files Browse the repository at this point in the history
…still only printed in verbose mode.
  • Loading branch information
greg-1-anderson committed Apr 1, 2016
1 parent a8ac567 commit 54f2a67
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions lib/Drush/Log/Logger.php
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,8 @@ public function log($level, $message, array $context = array()) {
$type_msg = sprintf($green, $level);
break;
case LogLevel::NOTICE :
$type_msg = sprintf("[%s]", $level);
break;
case 'message' : // Obsolete; only here in case contrib is using it.
case LogLevel::INFO :
if (!$verbose) {
Expand Down

0 comments on commit 54f2a67

Please sign in to comment.