summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorluke <luke@980ebf18-57e1-0310-9a29-db15c13687c0>2006-08-25 23:30:38 +0000
committerluke <luke@980ebf18-57e1-0310-9a29-db15c13687c0>2006-08-25 23:30:38 +0000
commit2540cdf2704eb62dfa760c334fcde105645ee007 (patch)
tree6202dea9340c27748edac4810f7ae6e203847149
parent38a184e4e1dc728fa4893a0b8779ab66a94961df (diff)
downloadpuppet-2540cdf2704eb62dfa760c334fcde105645ee007.tar.gz
puppet-2540cdf2704eb62dfa760c334fcde105645ee007.tar.xz
puppet-2540cdf2704eb62dfa760c334fcde105645ee007.zip
Demoting the xmlrpc access logs to debug from info
git-svn-id: https://reductivelabs.com/svn/puppet/trunk@1489 980ebf18-57e1-0310-9a29-db15c13687c0
-rw-r--r--lib/puppet/server/servlet.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/puppet/server/servlet.rb b/lib/puppet/server/servlet.rb
index 333fd3b30..8fc872293 100644
--- a/lib/puppet/server/servlet.rb
+++ b/lib/puppet/server/servlet.rb
@@ -48,11 +48,11 @@ class Server
allowed = @puppetserver.authconfig.allowed?(method, client, ip)
if allowed
- Puppet.info "Allowing %s(%s) trusted access to %s" %
+ Puppet.debug "Allowing %s(%s) trusted access to %s" %
[client, ip, method]
return true
else
- Puppet.info "Denying %s(%s) trusted access to %s" %
+ Puppet.debug "Denying %s(%s) trusted access to %s" %
[client, ip, method]
return false
end
@@ -62,11 +62,11 @@ class Server
# The next release of Puppet will almost definitely require
# this file to exist or will default to denying all access.
if Puppet.name == "puppetmasterd" or defined? Test::Unit::TestCase
- Puppet.info "Allowing %s(%s) trusted access to %s" %
+ Puppet.debug "Allowing %s(%s) trusted access to %s" %
[client, ip, method]
return true
else
- Puppet.info "Denying %s(%s) trusted access to %s on %s" %
+ Puppet.debug "Denying %s(%s) trusted access to %s on %s" %
[client, ip, method, Puppet.name]
return false
end