Skip to content

Commit

Permalink
feat: Disable httpx logs
Browse files Browse the repository at this point in the history
  • Loading branch information
PatrykGala committed Nov 21, 2024
1 parent bd55462 commit 06a8545
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/neptune_fetcher/api/api_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@
NEPTUNE_VERIFY_SSL: Final[bool] = os.environ.get("NEPTUNE_VERIFY_SSL", "1").lower() in {"1", "true"}

# Disable httpx logging, httpx logs requests at INFO level
logging.getLogger("httpx").setLevel(logging.ERROR)
logging.getLogger("httpx").setLevel(logging.WARN)


class ApiClient:
Expand Down

0 comments on commit 06a8545

Please sign in to comment.