From 3dda9bd99bf1e2a41668948159fde1f7d768b44a Mon Sep 17 00:00:00 2001 From: Solomon Peachy Date: Tue, 29 Jul 2025 21:05:33 -0400 Subject: [PATCH] sdl: Turn on debugf in sdl-threads by default Change-Id: I688732ad9bb52bd4eeb77d989e1a20e50ddd4a2c --- firmware/target/hosted/sdl/thread-sdl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/firmware/target/hosted/sdl/thread-sdl.c b/firmware/target/hosted/sdl/thread-sdl.c index 0858d11a87..29bdd89921 100644 --- a/firmware/target/hosted/sdl/thread-sdl.c +++ b/firmware/target/hosted/sdl/thread-sdl.c @@ -32,7 +32,7 @@ #include "core_alloc.h" /* Define this as 1 to show informational messages that are not errors. */ -#define THREAD_SDL_DEBUGF_ENABLED 1 +#define THREAD_SDL_DEBUGF_ENABLED 0 #if THREAD_SDL_DEBUGF_ENABLED #define THREAD_SDL_DEBUGF(...) DEBUGF(__VA_ARGS__)