diff options
author | Thom May <thom@chef.io> | 2018-04-11 14:23:25 +0100 |
---|---|---|
committer | Thom May <thom@chef.io> | 2018-04-11 14:23:25 +0100 |
commit | 23e5b6782725f646ad40bdc38b5ece50bf044534 (patch) | |
tree | 8f4f40385581eb01785daa178b21d89eac261785 /lib/mixlib/authentication/http_authentication_request.rb | |
parent | a2fbf74d0b2123b9cc28e3baf7ca81b061036635 (diff) | |
download | mixlib-authentication-tm/logging.tar.gz |
Move mixlib-auth debugging to trace leveltm/logging
Signed-off-by: Thom May <thom@chef.io>
Diffstat (limited to 'lib/mixlib/authentication/http_authentication_request.rb')
-rw-r--r-- | lib/mixlib/authentication/http_authentication_request.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/mixlib/authentication/http_authentication_request.rb b/lib/mixlib/authentication/http_authentication_request.rb index b573d2d..32b8e72 100644 --- a/lib/mixlib/authentication/http_authentication_request.rb +++ b/lib/mixlib/authentication/http_authentication_request.rb @@ -72,7 +72,7 @@ module Mixlib unless @request_signature @request_signature = headers.find_all { |h| h[0].to_s =~ /^x_ops_authorization_/ } .sort { |x, y| x.to_s[/\d+/].to_i <=> y.to_s[/\d+/].to_i }.map { |i| i[1] }.join("\n") - Mixlib::Authentication::Log.debug "Reconstituted (user-supplied) request signature: #{@request_signature}" + Mixlib::Authentication::Log.trace "Reconstituted (user-supplied) request signature: #{@request_signature}" end @request_signature end |