Index: trunk/ippToPsps/jython/batch.py
===================================================================
--- trunk/ippToPsps/jython/batch.py	(revision 31935)
+++ trunk/ippToPsps/jython/batch.py	(revision 31973)
@@ -434,9 +434,11 @@
         p.wait()
         #        out = p.stdout.read()
-        self.logger.infoPair("DVO access", "complete")
-
-        if self.scratchDb.getRowCount("dvoDetection") < 1:
-            self.logger.error("No DVO IDs found")
+
+        rowCount = self.scratchDb.getRowCount("dvoDetection")
+        if rowCount < 1:
+            self.logger.errorPair("DVO error", "No IDs found")
             return False
+
+        self.logger.infoPair("DVO access complete. Found", "%d detections" % rowCount)
             
         return True
