Skip to content

Commit 593a16d

Browse files
committed
change logging
1 parent 46352cc commit 593a16d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

deobfuscator-api/src/main/java/uwu/narumi/deobfuscator/api/context/DeobfuscatorOptions.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -320,10 +320,10 @@ public DeobfuscatorOptions build() {
320320
if (this.rtJarPath == null) {
321321
Path rtJar = findRtJarPath();
322322
if (rtJar != null) {
323-
System.out.println("Auto-detected rt.jar path: " + rtJar);
323+
LOGGER.info("Auto-detected rt.jar path: {}", rtJar);
324324
this.rtJarPath = rtJar;
325325
} 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.");
326+
LOGGER.error("Failed to auto-detect rt.jar path. Perhaps you don't have Java 8 installed?");
327327
}
328328
}
329329

0 commit comments

Comments
 (0)