From e7022feff18ada8be02e530d202f77ea9ded70b7 Mon Sep 17 00:00:00 2001 From: Cassie Breviu <46505951+cassiebreviu@users.noreply.github.com> Date: Thu, 5 Sep 2024 11:45:08 -0500 Subject: [PATCH] default local tracing to false (#173) --- src/api/tracing.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/api/tracing.py b/src/api/tracing.py index 56586ef7..5574475e 100644 --- a/src/api/tracing.py +++ b/src/api/tracing.py @@ -27,7 +27,7 @@ def verbose_trace(key, value): yield verbose_trace -def init_tracing(local_tracing: bool = True): +def init_tracing(local_tracing: bool = False): """ Initialize tracing for the application If local_tracing is True, use the PromptyTracer