summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThom May <thom@may.lt>2016-07-07 11:35:04 +0100
committerGitHub <noreply@github.com>2016-07-07 11:35:04 +0100
commited541bb9ed7b2f96bb9f4974195c3392de87b511 (patch)
treeef145bcb70371eff6cf3a8a841ede74e6039cbf1
parent72153297d5ac7a8ea0b872a4bcaa06aa2df79ad6 (diff)
parent1b552f1ab95ea30ebec7348f146032b997f99b75 (diff)
downloadchef-zero-ed541bb9ed7b2f96bb9f4974195c3392de87b511.tar.gz
Merge pull request #221 from stanhu/suppress-request-info-log
Downgrade info log message to debug
-rw-r--r--lib/chef_zero/rest_router.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/chef_zero/rest_router.rb b/lib/chef_zero/rest_router.rb
index b2de9c9..a93af8b 100644
--- a/lib/chef_zero/rest_router.rb
+++ b/lib/chef_zero/rest_router.rb
@@ -39,7 +39,7 @@ module ChefZero
end
def log_request(request)
- ChefZero::Log.info do
+ ChefZero::Log.debug do
"#{request.method} /#{request.rest_path.join("/")}".tap do |msg|
next unless request.method =~ /^(POST|PUT)$/