From 75d34f0afb812714389cd4a26cb3218c974b191f Mon Sep 17 00:00:00 2001 From: Nick Fisher Date: Mon, 23 Jun 2025 12:20:14 +0800 Subject: [PATCH] log user defines in build.dart --- thermion_dart/hook/build.dart | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/thermion_dart/hook/build.dart b/thermion_dart/hook/build.dart index f53eaf52..a0addc93 100644 --- a/thermion_dart/hook/build.dart +++ b/thermion_dart/hook/build.dart @@ -126,8 +126,9 @@ void main(List args) async { final flags = []; //"-fsanitize=address"]; final defines = {}; - + logger.info("User defines : ${input.userDefines}"); if ((input.userDefines["tracing"] as String?)?.isNotEmpty == true) { + logger.info("Enabling tracing"); defines["ENABLE_TRACING"] = "1"; }