diff options
| author | Luke Kanies <luke@madstop.com> | 2005-06-29 19:44:25 +0000 |
|---|---|---|
| committer | Luke Kanies <luke@madstop.com> | 2005-06-29 19:44:25 +0000 |
| commit | bb7e2833f0ea9c97d55fcb76e5811c035161256f (patch) | |
| tree | 560129341856ab4a29d9c3c9a40529627de521e4 /lib/puppet/transportable.rb | |
| parent | c16ca53ea8d62ffb8e02afddb8ae93cfbae800b2 (diff) | |
| download | puppet-bb7e2833f0ea9c97d55fcb76e5811c035161256f.tar.gz puppet-bb7e2833f0ea9c97d55fcb76e5811c035161256f.tar.xz puppet-bb7e2833f0ea9c97d55fcb76e5811c035161256f.zip | |
fixing debugging to severely reduce output but allow it when debugging a specific service
git-svn-id: https://reductivelabs.com/svn/puppet/library/trunk@319 980ebf18-57e1-0310-9a29-db15c13687c0
Diffstat (limited to 'lib/puppet/transportable.rb')
| -rw-r--r-- | lib/puppet/transportable.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/puppet/transportable.rb b/lib/puppet/transportable.rb index 519ca7460..c803a9e3d 100644 --- a/lib/puppet/transportable.rb +++ b/lib/puppet/transportable.rb @@ -132,12 +132,12 @@ module Puppet } if defined? @parameters @parameters.each { |param,value| - Puppet.warning "Defining %s on %s of type %s" % + Puppet.debug "Defining %s on %s of type %s" % [param,@name,@type] hash[param] = value } else - Puppet.warning "%s has no parameters" % @name + Puppet.debug "%s has no parameters" % @name end container = Puppet::Component.new(hash) nametable = {} @@ -165,7 +165,7 @@ module Puppet # don't rename; this shouldn't be possible anyway next if var == :name - Puppet.notice "Adding %s to %s" % [var,name] + Puppet.debug "Adding %s to %s" % [var,name] # override any existing values object[var] = value } |
