Index: trunk/ippToPsps/jython/datastore.py
===================================================================
--- trunk/ippToPsps/jython/datastore.py	(revision 31838)
+++ trunk/ippToPsps/jython/datastore.py	(revision 31839)
@@ -35,5 +35,5 @@
     def publish(self, name, path, file, fileType):
 
-        self.logger.info("Attempting to publish '" + path +"/" + file + "' to datastore product: '" + self.product + "', type: '" + self.type + "'")
+        self.logger.infoPair("Attempting to publish",  path + "/" + file)
         tempFile = tempfile.NamedTemporaryFile(mode='w+b')
         tempFile.write(file + "|||" + fileType)
@@ -54,5 +54,5 @@
             ret = False
         else:
-            self.logger.info("Datastore publish successful")
+            self.logger.infoPair("Datastore publish", "successful")
             ret = True
             
@@ -80,5 +80,5 @@
         else:
             ret = True
-            self.logger.info("Datastore removal of " + name + " successful")
+            self.logger.infoPair("Datastore removal successful", name)
             
         return ret
