logging item handle during export (when available)

This commit is contained in:
Petya Kohts
2015-12-11 01:20:28 +03:00
parent 104f6cacbd
commit 6ca6d9060f

View File

@@ -138,9 +138,10 @@ public class ItemExportServiceImpl implements ItemExportService
{
// now create a subdirectory
File itemDir = new File(destDir + "/" + seqStart);
System.out.println("Exporting Item " + myItem.getID() + " to "
+ itemDir);
System.out.println("Exporting Item " + myItem.getID() +
(myItem.getHandle() != null ? ", handle " + myItem.getHandle() : "") +
" to " + itemDir);
if (itemDir.exists())
{