Index: trunk/ippToPsps/jython/batch.py
===================================================================
--- trunk/ippToPsps/jython/batch.py	(revision 32211)
+++ trunk/ippToPsps/jython/batch.py	(revision 32221)
@@ -191,14 +191,18 @@
     '''
     @staticmethod
-    def deleteFromDisk(basePath, batchType, dvoLabel, id):
+    def deleteFromDisk(logger, basePath, batchType, dvoLabel, id):
        
         tarballPath = Batch.getTarballPath(basePath, batchType, dvoLabel, id)
         dirPath = Batch.getOutputPath(basePath, batchType, dvoLabel, id)
 
-        if not os.path.exists(tarballPath): return 1
+        if not os.path.exists(tarballPath): 
+            logger.errorPair("Could not find", tarballPath)
+            return 1
 
         try:
             os.remove(tarballPath)
+            logger.infoPair("Deleted", tarballPath)
         except:
+            logger.errorPair("Could not delete", tarballPath)
             return 0
    
