Disable runtime only log4j by default.

dev/0.11
modmuss50 2022-01-19 21:39:27 +00:00
parent f113b0e312
commit 9a796579e8
1 changed files with 1 additions and 1 deletions

View File

@ -106,7 +106,7 @@ public abstract class LoomGradleExtensionApiImpl implements LoomGradleExtensionA
this.accessWidener.finalizeValueOnRead(); this.accessWidener.finalizeValueOnRead();
this.getGameJarProcessors().finalizeValueOnRead(); this.getGameJarProcessors().finalizeValueOnRead();
this.runtimeOnlyLog4j = project.getObjects().property(Boolean.class).convention(true); this.runtimeOnlyLog4j = project.getObjects().property(Boolean.class).convention(false);
this.runtimeOnlyLog4j.finalizeValueOnRead(); this.runtimeOnlyLog4j.finalizeValueOnRead();
} }