print a -> b to stderr

--HG--
branch : 0.0.9.x
This commit is contained in:
Panxiaobo 2012-04-09 16:05:17 +08:00
parent 59dfa00154
commit 1bb0a2e8eb

View File

@ -99,7 +99,7 @@ public class Dex2jarCmd extends BaseCmd {
for (String fileName : remainingArgs) {
File file = output == null ? new File(FilenameUtils.getBaseName(fileName) + "-dex2jar.jar") : output;
System.out.println("dex2jar " + fileName + " -> " + file);
System.err.println("dex2jar " + fileName + " -> " + file);
DexFileReader reader = new DexFileReader(new File(fileName));
DexExceptionHandlerImpl handler = notHandleException ? null : new DexExceptionHandlerImpl()