Index: trunk/ippToPsps/jython/batch.py
===================================================================
--- trunk/ippToPsps/jython/batch.py	(revision 32823)
+++ trunk/ippToPsps/jython/batch.py	(revision 32824)
@@ -296,5 +296,5 @@
         # tar directory
         cmd = "tar -cvf " + tarPath + " -C " + self.subDir + " " + self.batchName
-        self.logger.infoPair("Running", cmd)
+        self.logger.infoPair("Creating tar archive", cmd)
         p = Popen(cmd, shell=True, stdout=PIPE)
         p.wait()
@@ -306,5 +306,5 @@
         # zip tar archive
         cmd = "gzip -c " + tarPath + " > " + tarballPath
-        self.logger.infoPair("Running", cmd)
+        self.logger.infoPair("Compressing tar archive", cmd)
         p = Popen(cmd, shell=True, stdout=PIPE)
         p.wait()
@@ -315,5 +315,4 @@
 
         # only now can we report that the batch has successfully processed
-        self.logger.infoPair("Batch tar 'n zip successful", "setting batch to 'processed'")
         self.ippToPspsDb.updateProcessed(self.batchID, 1)
 
