Index: trunk/ippToPsps/src/DetectionBatch.c
===================================================================
--- trunk/ippToPsps/src/DetectionBatch.c	(revision 31033)
+++ trunk/ippToPsps/src/DetectionBatch.c	(revision 31036)
@@ -440,7 +440,7 @@
     this->base.print(&this->base);
 
-    printf("* exp ID          : %d\n", this->expId);
-    printf("* exp name        : '%s'\n",  this->expName ? this->expName : "undef");
-    printf("\n");
+    this->base.logger->print(this->base.logger, MSG_INFO, "DetectionBatch", "exp ID          : %d\n", this->expId);
+    this->base.logger->print(this->base.logger, MSG_INFO, "DetectionBatch", "exp name        : %s\n",  this->expName ? this->expName : "undef");
+    this->base.logger->print(this->base.logger, MSG_INFO, "DetectionBatch", "\n");
 }
 
@@ -518,4 +518,6 @@
     parseArguments(this, *argc, argv);
 
+    this->print(this);
+
     return this;
 }
@@ -528,5 +530,6 @@
 //    ippToPsps_VersionPrint();
 
-    Logger* logger = new_Logger(NULL);
+    Logger* logger = new_Logger(NULL, false);
+//    Logger* logger = new_Logger("./detBatchLog.txt", false);
     logger->print(logger, MSG_INFO, "main", "Creating new detection batch\n");
 
