Update error messages

This commit is contained in:
topjohnwu
2016-11-29 13:38:32 +08:00
parent 24ef80351c
commit cb1df5217e
4 changed files with 20 additions and 13 deletions
@@ -139,7 +139,7 @@ public class ZipUtils {
if (!entry.getName().contains(path)) {
continue;
}
Logger.dev("Extracting: " + entry);
Logger.dev("ZipUtils: Extracting: " + entry);
is = zipfile.getInputStream(entry);
dest = new File(folder, entry.getName());
if (dest.getParentFile().mkdirs()) {