1) Make log a bit more descriptive

This commit is contained in:
Eric Tschetter 2013-03-13 19:26:22 -05:00
parent 4c165b4880
commit 1e0f2c2d92
1 changed files with 1 additions and 1 deletions

View File

@ -62,7 +62,7 @@ public class CompressionUtils
zipOut = new ZipOutputStream(new FileOutputStream(outputZipFile));
File[] files = directory.listFiles();
for (File file : files) {
log.info("Adding file[%s] with size[%,d]. Total size[%,d]", file, file.length(), totalSize);
log.info("Adding file[%s] with size[%,d]. Total size so far[%,d]", file, file.length(), totalSize);
if (file.length() >= Integer.MAX_VALUE) {
zipOut.close();
outputZipFile.delete();