diff options
author | Luke Kanies <luke@madstop.com> | 2008-03-16 17:58:57 -0500 |
---|---|---|
committer | Luke Kanies <luke@madstop.com> | 2008-03-16 17:58:57 -0500 |
commit | bba0b43a594273b82721b6e272aa5d95ab4e89f1 (patch) | |
tree | 087f9bc1a41751029a61e4e2cc8d6cf095f37319 /lib | |
parent | 1dc0e24a4ff565486c00c542f78ab45e23a64ef9 (diff) | |
download | puppet-bba0b43a594273b82721b6e272aa5d95ab4e89f1.tar.gz puppet-bba0b43a594273b82721b6e272aa5d95ab4e89f1.tar.xz puppet-bba0b43a594273b82721b6e272aa5d95ab4e89f1.zip |
Downgrading the "Using cache" message from the indirection to debug
Diffstat (limited to 'lib')
-rw-r--r-- | lib/puppet/indirector/indirection.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/puppet/indirector/indirection.rb b/lib/puppet/indirector/indirection.rb index 129676e9c..d47433c60 100644 --- a/lib/puppet/indirector/indirection.rb +++ b/lib/puppet/indirector/indirection.rb @@ -162,7 +162,7 @@ class Puppet::Indirector::Indirection # See if our instance is in the cache and up to date. if cache? and cache.has_most_recent?(key, terminus(terminus_name).version(key)) - Puppet.info "Using cached %s %s" % [self.name, key] + Puppet.debug "Using cached %s %s" % [self.name, key] return cache.find(key, *args) end |