From cb6a64843c3ddd383a17237664325629b368759d Mon Sep 17 00:00:00 2001 From: Ray Date: Tue, 2 Sep 2025 18:52:10 +0200 Subject: [PATCH] Remove raylib logs --- tools/rexm/rexm.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tools/rexm/rexm.c b/tools/rexm/rexm.c index c83ae0eaf..db1e0fbf7 100644 --- a/tools/rexm/rexm.c +++ b/tools/rexm/rexm.c @@ -181,6 +181,8 @@ static void UpdateWebMetadata(const char *exHtmlPath, const char *exFilePath); //------------------------------------------------------------------------------------ int main(int argc, char *argv[]) { + SetTraceLogLevel(LOG_NONE); + // Path values can be configured with environment variables exBasePath = getenv("REXM_EXAMPLES_BASE_PATH"); exWebPath = getenv("REXM_EXAMPLES_WEB_PATH");