Skip to content

Commit

Permalink
Enable log messages on all builds by default after we got too many co…
Browse files Browse the repository at this point in the history
…mplaints.
  • Loading branch information
EliteMasterEric committed Dec 18, 2024
1 parent 7f8937d commit 36d7de5
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion project.hxp
Original file line number Diff line number Diff line change
Expand Up @@ -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());
Expand Down

0 comments on commit 36d7de5

Please sign in to comment.