mirror of
https://github.com/revanced/Apktool.git
synced 2025-06-12 05:07:41 +02:00
stderr for error messages
This commit is contained in:
@ -791,7 +791,7 @@ final public class AndrolibResources {
|
||||
if (!dir.exists()) {
|
||||
if (!dir.mkdirs()) {
|
||||
if (sFrameworkFolder != null) {
|
||||
System.out.println("Can't create Framework directory: "
|
||||
System.err.println("Can't create Framework directory: "
|
||||
+ dir);
|
||||
}
|
||||
throw new AndrolibException("Can't create directory: " + dir);
|
||||
|
@ -155,9 +155,9 @@ public class DebugInjector {
|
||||
localType = "D";
|
||||
break;
|
||||
default:
|
||||
System.out.println(line);
|
||||
System.out.println(m.group(2));
|
||||
System.out.println(m.group(3));
|
||||
System.err.println(line);
|
||||
System.err.println(m.group(2));
|
||||
System.err.println(m.group(3));
|
||||
assert false;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user