Skip to content

Commit

Permalink
Removing unneeded print statement
Browse files Browse the repository at this point in the history
  • Loading branch information
conor-mccullough committed Feb 11, 2024
1 parent 655c526 commit 905178d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion helper/transport.go
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,6 @@ func (t *TransportWrapper) RoundTrip(req *http.Request) (*http.Response, error)
}
}
}
log.Printf(" \n")

reqData, err := httputil.DumpRequestOut(req, t.options.LogRequestBody)
if err == nil {
Expand Down Expand Up @@ -141,6 +140,7 @@ func (t *TransportWrapper) RoundTrip(req *http.Request) (*http.Response, error)
log.Printf("[ERROR] %s API Response error: %#v", t.name, err)
}
}

return resp, nil
}

Expand Down

0 comments on commit 905178d

Please sign in to comment.