Index: trunk/ippToPsps/src/Batch.c
===================================================================
--- trunk/ippToPsps/src/Batch.c	(revision 31033)
+++ trunk/ippToPsps/src/Batch.c	(revision 31036)
@@ -113,5 +113,6 @@
     while (fgets(line, 1000, file) != NULL) this->numOfInputFiles++;
 
-    this->logger->print(this->logger, MSG_INFO, "Batch", "%d input files found\n", this->numOfInputFiles);
+    this->logger->print(this->logger, MSG_INFO, "Batch", 
+            "%d input file%s found\n", this->numOfInputFiles, (this->numOfInputFiles > 1) ? "s" : "");
 
     if (this->numOfInputFiles < 1) return false;
@@ -256,10 +257,12 @@
 static void print(Batch* this) {
 
-    printf("\n");
-    printf("* surveyType      : '%s'\n", this->surveyType);
-    printf("* surveyID        : %d\n", this->surveyID);
-    printf("* resultsPath     : '%s'\n", this->resultsPath);
-    printf("* numOfInputFiles : %d\n", this->numOfInputFiles);
-    printf("* fitsInPath      : '%s'\n", this->fitsInPath);
+    this->logger->print(this->logger, MSG_INFO, "Batch", "\n");
+    this->logger->print(this->logger, MSG_INFO, "Batch", "     Class fields:\n");
+    this->logger->print(this->logger, MSG_INFO, "Batch", "surveyType      : %s\n", this->surveyType);
+    this->logger->print(this->logger, MSG_INFO, "Batch", "surveyID        : %d\n", this->surveyID);
+    this->logger->print(this->logger, MSG_INFO, "Batch", "resultsPath     : %s\n", this->resultsPath);
+    this->logger->print(this->logger, MSG_INFO, "Batch", "numOfInputFiles : %d\n", this->numOfInputFiles);
+    this->logger->print(this->logger, MSG_INFO, "Batch", "fitsInPath      : %s\n", this->fitsInPath);
+    this->logger->print(this->logger, MSG_INFO, "Batch", "testMode        : %s\n", this->testMode ? "yes" : "no");
 }
 
