From 2540cdf2704eb62dfa760c334fcde105645ee007 Mon Sep 17 00:00:00 2001 From: luke Date: Fri, 25 Aug 2006 23:30:38 +0000 Subject: Demoting the xmlrpc access logs to debug from info git-svn-id: https://reductivelabs.com/svn/puppet/trunk@1489 980ebf18-57e1-0310-9a29-db15c13687c0 --- lib/puppet/server/servlet.rb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'lib') 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 -- cgit