From 65d39bbc803c4ecb6936129b3e413607260b9afe Mon Sep 17 00:00:00 2001 From: Scott Todd Date: Thu, 26 Sep 2024 14:16:14 -0700 Subject: [PATCH] [libshortfin] Fix `SHORTFIN_ENABLE_TRACING` typo. (#227) Now the log messages match what is actually checked. --- libshortfin/setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libshortfin/setup.py b/libshortfin/setup.py index 196a82064..a98d2fb00 100644 --- a/libshortfin/setup.py +++ b/libshortfin/setup.py @@ -71,11 +71,11 @@ def is_cpp_prebuilt(): if ENABLE_TRACY: print( - "*** Enabling Tracy instrumentation (disable with SHORTFIN_BUILD_TRACING=OFF)", + "*** Enabling Tracy instrumentation (disable with SHORTFIN_ENABLE_TRACING=OFF)", ) else: print( - "*** Tracy instrumentation not enabled (enable with SHORTFIN_BUILD_TRACING=ON)", + "*** Tracy instrumentation not enabled (enable with SHORTFIN_ENABLE_TRACING=ON)", )