From 5fa7d1c0c078fc7b13449206fc70e4cde88f0a19 Mon Sep 17 00:00:00 2001 From: Gavin Halliday Date: Thu, 16 Nov 2023 12:32:39 +0000 Subject: [PATCH] Disable tracing of span starts by default Signed-off-by: Gavin Halliday --- system/jlib/jtrace.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/jlib/jtrace.cpp b/system/jlib/jtrace.cpp index ef6be7c68a2..490148b637b 100644 --- a/system/jlib/jtrace.cpp +++ b/system/jlib/jtrace.cpp @@ -743,7 +743,7 @@ class CTraceManager : implements ITraceManager, public CInterface private: bool enabled = true; bool optAlwaysCreateGlobalIds = false; - bool optLogSpanStart = true; // Likely to change to false at a later date + bool optLogSpanStart = false; bool optLogSpanFinish = true; StringAttr moduleName;