mirror of
https://github.com/FunkinCrew/Funkin.git
synced 2024-11-14 19:25:16 -05:00
Enable log messages on all builds by default after we got too many complaints.
This commit is contained in:
parent
ce85ee20a7
commit
4dbb0baa17
1 changed files with 4 additions and 1 deletions
|
@ -474,7 +474,10 @@ class Project extends HXProject {
|
||||||
|
|
||||||
// Should be true on debug builds or if GITHUB_BUILD is enabled.
|
// Should be true on debug builds or if GITHUB_BUILD is enabled.
|
||||||
FEATURE_DEBUG_FUNCTIONS.apply(this, isDebug() || GITHUB_BUILD.isEnabled(this));
|
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.
|
// Should default to true on workspace builds and false on release builds.
|
||||||
REDIRECT_ASSETS_FOLDER.apply(this, isDebug() && isDesktop());
|
REDIRECT_ASSETS_FOLDER.apply(this, isDebug() && isDesktop());
|
||||||
|
|
Loading…
Reference in a new issue