Skip to content

Commit 134b97c

Browse files
committed
added some debug code for RG reobf
1 parent 13475c9 commit 134b97c

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/main/java/net/minecraftforge/gradle/tasks/user/reobf/ObfArtifact.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@
2222
import net.minecraftforge.gradle.user.UserConstants;
2323

2424
import org.gradle.api.InvalidUserDataException;
25-
import org.gradle.api.Task;
2625
import org.gradle.api.artifacts.PublishArtifact;
2726
import org.gradle.api.file.FileCollection;
2827
import org.gradle.api.internal.artifacts.publish.AbstractPublishArtifact;
@@ -368,6 +367,9 @@ private void applyRetroGuard(File input, File output, File srg) throws Exception
368367
if (classpath != null)
369368
{
370369
loader = new URLClassLoader(ObfuscateTask.toUrls(classpath), BasePlugin.class.getClassLoader());
370+
caller.getLogger().debug("Reobf classpath ----- ");
371+
for (File f : classpath.getFiles())
372+
caller.getLogger().debug(""+f);
371373
}
372374

373375
// the name provider

0 commit comments

Comments
 (0)