We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 46352cc commit 593a16dCopy full SHA for 593a16d
deobfuscator-api/src/main/java/uwu/narumi/deobfuscator/api/context/DeobfuscatorOptions.java
@@ -320,10 +320,10 @@ public DeobfuscatorOptions build() {
320
if (this.rtJarPath == null) {
321
Path rtJar = findRtJarPath();
322
if (rtJar != null) {
323
- System.out.println("Auto-detected rt.jar path: " + rtJar);
+ LOGGER.info("Auto-detected rt.jar path: {}", rtJar);
324
this.rtJarPath = rtJar;
325
} else {
326
- LOGGER.warn("Failed to auto-detect rt.jar path. Please provide path to rt.jar from Java 8 binaries, otherwise sandbox will not work.");
+ LOGGER.error("Failed to auto-detect rt.jar path. Perhaps you don't have Java 8 installed?");
327
}
328
329
0 commit comments