From f8b2dbdfbe99cadb48241468be380fb6f8b44840 Mon Sep 17 00:00:00 2001 From: justinpolygon <123573436+justinpolygon@users.noreply.github.com> Date: Thu, 23 Oct 2025 07:49:31 -0700 Subject: [PATCH] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 3ca7b71c..768b5ed1 100644 --- a/README.md +++ b/README.md @@ -135,12 +135,12 @@ Sometimes you may find it useful to see the actual request and response details You can activate the debug mode as follows: ```python -client = RESTClient(trace=True) +client = RESTClient(trace=True, verbose=True) ``` ### What Does Debug Mode Do? -When debug mode is enabled, the client will print out useful debugging information for each API request. This includes: the request URL, the headers sent in the request, and the headers received in the response. +When debug mode is enabled, the client will print out useful debugging information for each API request. You need to enable `verbose=True` too so that you log the trace or already have your own logger configured. This includes: the request URL, the headers sent in the request, and the headers received in the response. ### Example Output