don't use concatenation in logger, fix other small code style issues

This commit is contained in:
Skylot
2015-02-07 17:55:57 +03:00
parent 141398aeac
commit 99d9814083
16 changed files with 29 additions and 27 deletions
+2 -2
View File
@@ -18,7 +18,7 @@ public class JadxCLI {
processAndSave(jadxArgs);
}
} catch (Throwable e) {
LOG.error("jadx error: " + e.getMessage(), e);
LOG.error("jadx error: {}", e.getMessage(), e);
System.exit(1);
}
}
@@ -56,7 +56,7 @@ public class JadxCLI {
} else {
outDirName = name + "-jadx-out";
}
LOG.info("output directory: " + outDirName);
LOG.info("output directory: {}", outDirName);
outputDir = new File(outDirName);
jadxArgs.setOutputDir(outputDir);
}