Skip to content

Commit

Permalink
Fixes #26018 - Log HTTP requests at debug level
Browse files Browse the repository at this point in the history
  • Loading branch information
jturel authored and jlsherrill committed Feb 11, 2019
1 parent 5ac4d88 commit 43f2e49
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ language:
- ruby

rvm:
- "2.2.0"
- "2.3.0"
- "2.4.0"
- "2.5.0"

before_install:
- gem install bundler
Expand Down
2 changes: 1 addition & 1 deletion lib/runcible/base.rb
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ def call(method, path, options = {})
response = get_response(client, path, *args)
processed = process_response(response)
self.logs << "Response: #{response.code}: #{response.body}"
log_info
log_debug
processed
rescue RestClient::ResourceNotFound => e
self.logs << exception_to_log(e)
Expand Down

0 comments on commit 43f2e49

Please sign in to comment.