From 36d7de5692fe94efb3ec0a31b3691a782ecc64c9 Mon Sep 17 00:00:00 2001 From: EliteMasterEric Date: Fri, 18 Oct 2024 16:00:06 -0400 Subject: [PATCH] Enable log messages on all builds by default after we got too many complaints. --- project.hxp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/project.hxp b/project.hxp index 38c5c4933..4e8dae4b8 100644 --- a/project.hxp +++ b/project.hxp @@ -474,7 +474,10 @@ class Project extends HXProject { // Should be true on debug builds or if GITHUB_BUILD is enabled. FEATURE_DEBUG_FUNCTIONS.apply(this, isDebug() || GITHUB_BUILD.isEnabled(this)); - FEATURE_LOG_TRACE.apply(this, isDebug()); + + // Got a lot of complains about this being turned off by default on some builds. + // TODO: Look into ways to optimize logging (maybe by using a thread pool?) + FEATURE_LOG_TRACE.apply(this, true); // Should default to true on workspace builds and false on release builds. REDIRECT_ASSETS_FOLDER.apply(this, isDebug() && isDesktop());