diff options
author | varac <varacanero@zeromail.org> | 2016-01-24 22:09:08 +0100 |
---|---|---|
committer | varac <varacanero@zeromail.org> | 2016-01-24 22:09:08 +0100 |
commit | 4a8a1a9b29d2b09786f21583984f04d00e482712 (patch) | |
tree | 768580e42081c696dca9a396d54b09692b30f436 /lib/leap_cli | |
parent | 1b73438de4c407b602e2e60f85be8884ed5c3a4e (diff) |
Filter more puppet 3 uppercase log msgs
Puppet 3 changed log prefixes to uppercase.
Diffstat (limited to 'lib/leap_cli')
-rw-r--r-- | lib/leap_cli/logger.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/leap_cli/logger.rb b/lib/leap_cli/logger.rb index 8b55bb3..9e98321 100644 --- a/lib/leap_cli/logger.rb +++ b/lib/leap_cli/logger.rb @@ -129,6 +129,8 @@ module LeapCli { :match => /WARNING: The following packages cannot be authenticated!/, :color => :red, :level => 0, :priority => -10}, # PUPPET + { :match => /^(W|w)arning: Not collecting exported resources without storeconfigs/, :level => 2, :color => :yellow, :priority => -10}, + { :match => /^(W|w)arning: Found multiple default providers for vcsrepo:/, :level => 2, :color => :yellow, :priority => -10}, { :match => /^(W|w)arning: .*is deprecated.*$/, :level => 2, :color => :yellow, :priority => -10}, { :match => /^(W|w)arning: Scope.*$/, :level => 2, :color => :yellow, :priority => -10}, { :match => /^(N|n)otice:/, :level => 1, :color => :cyan, :priority => -20}, |