diff options
author | James Turnbull <james@lovedthanlost.net> | 2008-09-26 14:26:45 +1000 |
---|---|---|
committer | James Turnbull <james@lovedthanlost.net> | 2008-09-26 14:26:45 +1000 |
commit | 3749267093923692d6e7bc0c9ce83b43a487b19e (patch) | |
tree | 6d334ea12e1468b34160fa36da29dd7d78ac31ea /lib/puppet | |
parent | f792b645fa1f1237e144aa79d84e53c49ed64564 (diff) | |
download | puppet-3749267093923692d6e7bc0c9ce83b43a487b19e.tar.gz puppet-3749267093923692d6e7bc0c9ce83b43a487b19e.tar.xz puppet-3749267093923692d6e7bc0c9ce83b43a487b19e.zip |
Fixed #1610 - Raise "Filebucketed" messages to Notice priority
Diffstat (limited to 'lib/puppet')
-rw-r--r-- | lib/puppet/type/file.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/puppet/type/file.rb b/lib/puppet/type/file.rb index 875f8c370..2a5e61de8 100644 --- a/lib/puppet/type/file.rb +++ b/lib/puppet/type/file.rb @@ -368,7 +368,7 @@ module Puppet Find.find(self[:path]) do |f| if File.file?(f) sum = backup.backup(f) - self.info "Filebucketed %s to %s with sum %s" % + self.notice "Filebucketed %s to %s with sum %s" % [f, backup.name, sum] end end @@ -403,7 +403,7 @@ module Puppet case backup when Puppet::Network::Client.client(:Dipper): sum = backup.backup(file) - self.info "Filebucketed to %s with sum %s" % + self.notice "Filebucketed to %s with sum %s" % [backup.name, sum] return true when String: |