From d1d8e305edd3754d4b725e2be4575d31b71d38ad Mon Sep 17 00:00:00 2001 From: JeremyStarTM Date: Wed, 6 Nov 2024 14:29:31 +0100 Subject: [PATCH] Fix build.gradle log call --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 0a9cb96..55c4f54 100644 --- a/build.gradle +++ b/build.gradle @@ -63,7 +63,7 @@ tasks.register("javadocAll", Javadoc) { // Fix module collisions doFirst { - Logger.log(LogLevel.WARN, "If this task fails, make sure to reset all module-info.java files using git or you may encounter issues.") + getLogger().log(LogLevel.WARN, "If this task fails, make sure to reset all module-info.java files using git or you may encounter issues.") for (String subproject : subprojects) { File source = new File(project(subproject).projectDir.getPath() + "/src/main/java/module-info.java")