Skip to content

Commit

Permalink
Tweak verbose whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
tessro committed May 4, 2021
1 parent c8690a5 commit d3f4fdb
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions client.go
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ func (c Client) Get(path string) (string, error) {

if c.Verbose {
fmt.Println("<===", string(body))
fmt.Println()
}
return string(body), nil
}
Expand All @@ -58,6 +59,7 @@ func (c Client) Put(path string, body []byte) error {
if c.Verbose {
fmt.Println("PUT", path)
fmt.Println("===>", string(body))
fmt.Println()
}

url := c.Endpoint(path)
Expand Down

0 comments on commit d3f4fdb

Please sign in to comment.