summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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