diff options
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 9 |
1 files changed, 8 insertions, 1 deletions
@@ -1,7 +1,8 @@ # Net::Hippie [](https://rubygems.org/gems/net-hippie) -[](https://github.com/xlgmokha/net-hippie/actions) +[)](https://github.com/xlgmokha/net-hippie/actions) + `Net::Hippie` is a light weight wrapper around `net/http` that defaults to sending `JSON` messages. @@ -65,6 +66,12 @@ client = Net::Hippie::Client.new( ) ``` +To disable logging you will need to override the default logger. + +```ruby +client = Net::Hippie::Client.new(logger: nil) +``` + ### Basic Auth ```ruby |
