We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent adee613 commit ad85f43Copy full SHA for ad85f43
llm-service/app/main.py
@@ -89,6 +89,15 @@ def _configure_logger() -> None:
89
90
_configure_logger()
91
92
+
93
+def _enable_http_debug() -> None:
94
+ urllib3_logger = logging.getLogger("urllib3")
95
+ urllib3_logger.setLevel(logging.DEBUG)
96
+ urllib3_logger.propagate = True
97
98
99
+_enable_http_debug()
100
101
if os.environ.get("ENABLE_OPIK") == "True":
102
opik.configure(
103
use_local=True, url=os.environ.get("OPIK_URL", "http://localhost:5174")
0 commit comments