Index: lams_common/src/java/org/lamsfoundation/lams/util/zipfile/ZipFileUtil.java =================================================================== diff -u -rca0172edce3b4798059b892187fcf985099749ab -rd128c05946dee8c8d5ba2ec26d5066958a3ce0ed --- lams_common/src/java/org/lamsfoundation/lams/util/zipfile/ZipFileUtil.java (.../ZipFileUtil.java) (revision ca0172edce3b4798059b892187fcf985099749ab) +++ lams_common/src/java/org/lamsfoundation/lams/util/zipfile/ZipFileUtil.java (.../ZipFileUtil.java) (revision d128c05946dee8c8d5ba2ec26d5066958a3ce0ed) @@ -138,7 +138,7 @@ entryName = entry.getName(); String destName = tempDirName + File.separator + entryName; - log.debug("Prepare directory for :" + destName); + log.error("Prepare directory for :" + destName); prepareDirectory(destName); FileOutputStream fos = new FileOutputStream( destName ); @@ -179,10 +179,10 @@ //It must sort out the directory information to current OS. //e.g, if zip file is zipped under windows, but unzip in linux. destName = FileUtil.makeCanonicalPath(destName); - log.debug("Change canonical directory to :" + destName); + log.error("Change canonical directory to :" + destName); File destNameFile = new File(destName); String path = destNameFile.getParent(); - log.debug("Making path :" + path); + log.error("Making path :" + path); if(path != null){ File pathDir = new File(path); pathDir.mkdirs();