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 3162f35 commit f9689bfCopy full SHA for f9689bf
ddtrace/llmobs/_llmobs.py
@@ -516,6 +516,10 @@ def enable(
516
config._llmobs_ml_app = ml_app or config._llmobs_ml_app
517
config._llmobs_instrumented_proxy_urls = instrumented_proxy_urls or config._llmobs_instrumented_proxy_urls
518
519
+ # FIXME: workaround to prevent noisy logs when using the experiments feature
520
+ if config._dd_api_key and cls._app_key and os.environ.get("DD_TRACE_ENABLED", "").lower() not in ["true", "1"]:
521
+ ddtrace.tracer.enabled = False
522
+
523
error = None
524
start_ns = time.time_ns()
525
try:
0 commit comments