diff --git a/README.md b/README.md index 9b7d8b3..8942cdb 100644 --- a/README.md +++ b/README.md @@ -20,13 +20,13 @@ authClient := http.Client{ } ``` -Or debug all outgoing requests globally within your application: +Or debug all outgoing requests as `curl` globally within your application: ```go debugMode := os.Getenv("DEBUG") == "true" http.DefaultTransport = transport.Chain( http.DefaultTransport, - transport.If(debugMode, transport.LogRequests), + transport.If(debugMode, transport.LogRequests(transport.LogOptions{Concise: true, CURL: true})), ) ```