From: elijah Date: Sun, 17 Mar 2013 07:37:13 +0000 (-0700) Subject: hide 'executed successfully' puppet notices at default log level. X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=35229e4c4eecbe3a79e66dd8cf81d4103921cb7b;p=leap%2Fleap_cli.git hide 'executed successfully' puppet notices at default log level. --- diff --git a/lib/leap_cli/logger.rb b/lib/leap_cli/logger.rb index e700ee6..1aa7971 100644 --- a/lib/leap_cli/logger.rb +++ b/lib/leap_cli/logger.rb @@ -118,6 +118,7 @@ module LeapCli { :match => /^warning: .*is deprecated.*$/, :level => 2, :color => :yellow, :priority => -10}, { :match => /^warning: Scope.*$/, :level => 2, :color => :yellow, :priority => -10}, { :match => /^notice:/, :level => 1, :color => :cyan, :priority => -20}, + { :match => /^notice:.*executed successfully$/, :level => 2, :color => :cyan, :priority => -15}, { :match => /^warning:/, :level => 0, :color => :yellow, :priority => -20}, { :match => /^Duplicate declaration:/, :level => 0, :color => :red, :priority => -20}, { :match => /Finished catalog run/, :level => 0, :color => :green, :priority => -10},