improved logging

This commit is contained in:
mindthegab
2015-05-29 17:00:19 -04:00
parent f9c4647f22
commit 2a3eb3919e

View File

@@ -43,9 +43,11 @@ public class AmpUnArchiver extends AbstractZipUnArchiver {
*/ */
ModuleManagementTool mmt = new ModuleManagementTool(); ModuleManagementTool mmt = new ModuleManagementTool();
mmt.setVerbose(false); mmt.setVerbose(false);
getLogger().info("getDestFile ():" + getDestFile()); if(getDestFile() != null)
getLogger().info("getDestFile ():" + getDestFile()); getLogger().info("getDestFile ():" + getDestFile());
getLogger().info("getDestDirectory ():" + getDestDirectory());
if(getDestDirectory()!= null)
getLogger().info("getDestDirectory ():" + getDestDirectory());
File destLocation = (getDestFile() == null || !getDestFile().exists() ) ? getDestDirectory() : getDestFile(); File destLocation = (getDestFile() == null || !getDestFile().exists() ) ? getDestDirectory() : getDestFile();