summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorPeter Schulze <petschul@cisco.com>2022-05-03 17:09:02 -0600
committerPeter Schulze <petschul@cisco.com>2022-05-03 17:09:02 -0600
commitb6d7b627d3685eb81ec670848aa0474eb2aab003 (patch)
tree08461c2a1e652bbb2f42cb485e09cc8644009433 /README.md
parent86931c43711f8d71023f9c8e5fabba0496dddadb (diff)
add instructions for enabling debug output
Diffstat (limited to 'README.md')
-rw-r--r--README.md9
1 files changed, 9 insertions, 0 deletions
diff --git a/README.md b/README.md
index 2bade59..c6055ec 100644
--- a/README.md
+++ b/README.md
@@ -65,6 +65,15 @@ client = Net::Hippie::Client.new(
)
```
+To enable HTTP debug output you will need to explicitly set it.
+
+```ruby
+Net::Hippie.logger = Logger.new(STDERR)
+client = Net::Hippie::Client.new(
+ enable_debug_output: true
+)
+```
+
### Basic Auth
```ruby