Index: /trunk/FACT++/src/dataLogger.cc
===================================================================
--- /trunk/FACT++/src/dataLogger.cc	(revision 10675)
+++ /trunk/FACT++/src/dataLogger.cc	(revision 10676)
@@ -1247,5 +1247,5 @@
 {
 	Message("-----------------------------------------");
-	Message("------DATA LOGGER CURRENT STATE----------");
+	Message("------ DATA LOGGER CURRENT STATE --------");
 	Message("-----------------------------------------");
 	//print the path configuration
@@ -1272,5 +1272,5 @@
 	str << "Run Number: " << fRunFileName;
 	Message(str.str());
-	Message("-----------OPENED FILES------------------");
+	Message("----------- OPENED FILES ----------------");
 	//print all the open files. 
 	if (fNightlyLogFile.is_open())
@@ -1365,5 +1365,5 @@
 	statVar.sizeWritten -= fBaseSizeRun;
 	*/
-	Message("-----------------STATS-------------------");
+	Message("---------------- STATS ------------------");
 	str.str("");
 	str << "Total Size written: " << statVar.sizeWritten << " bytes.";
@@ -1378,5 +1378,5 @@
     else
     	Message("Statistics updates are currently disabled");
-	Message("------------DIM SUBSCRIPTIONS------------");
+	Message("----------- DIM SUBSCRIPTIONS -----------");
 
         str.str("");
@@ -1391,8 +1391,8 @@
 	}
 	if (fIsBlackList)
-		Message("------------BLOCK LIST-------------------");
+		Message("------------- BLOCK LIST ----------------");
 	else
 		if (fGreyList.size() != 0)
-			Message("------------ALLOW LIST-------------------");
+			Message("----------- ALLOW LIST ------------------");
 	for (set<string>::iterator it=fGreyList.begin(); it != fGreyList.end(); it++)
 		Message(*it);
@@ -1851,5 +1851,5 @@
 	 		
 	 		default:
-	 			Error("THIS SHOULD NEVER BE REACHED. dataLogger.cc ln 1198.");
+	 			Fatal("THIS SHOULD NEVER BE REACHED. dataLogger.cc ln 1198.");
 	 	};
 	 	//we skip the variable length strings for now (in fits only)
@@ -2224,30 +2224,31 @@
     /* Additional help text which is printed after the configuration
      options goes here */
-	cout << "\n"
-			"The Block option has priority over the allow."
-			" i.e. if both are present, only the block list is kept."
-			"If only a server name or service without its server prefix is given "
-			"then all the services of that  server, or all the services that correspond to the given suffix"
-			" are ignored or considered."
-			"\n"
-			"For example, block=DIS_DNS will skip all the services offered by the DIS_DNS server. "
-			"while block=SERVICE_LIST will skip all the SERVICE_LIST services offered by any server."
-			"\n"
-			" The Commands offered by the dataLoger are the following: \n";
-	cout << DataLogger::fConfigDay << " specify the path where to put the nightly files\n";
-	cout << DataLogger::fConfigRun << " specify the path where to put the run files\n";
-	cout << DataLogger::fConfigRunNumber << " specify the run number\n";
-	cout << DataLogger::fConfigLog << " log a particular message\n";
-	cout << DataLogger::fTransStart << " start the nightly logging\n";
-	cout << DataLogger::fTransStop << " stop the nightly logging\n";
-	cout << DataLogger::fTransStartRun << " start the run logging\n";
-	cout << DataLogger::fTransStopRun << " stop the run logging\n";
-	cout << DataLogger::fTransReset << " stop any logging and/or recover from an error state\n";
-	cout << DataLogger::fTransWait << " go to the wait for run number state\n";
-	cout << DataLogger::fPrintCommand << " print the current state of the logger to the shell\n";
-	cout << DataLogger::fDebugOnOff << " turn on or off the debug mode\n";
-	cout << DataLogger::fStatsPeriod << " set the periodicity of the statistics. 0 disable them\n";
-	cout << endl;
-
+    cout <<
+        "\n"
+        "The block option has priority over the allow, "
+        "i.e. if both are present, only the block list is kept. "
+        "If only a server name or service without its server prefix is given "
+        "then all the services of that server, or all the services that "
+        "correspond to the given suffix are ignored or considered.\n"
+        "\n"
+        "For example, block=DIS_DNS will skip all the services offered by "
+        "the DIS_DNS server, while block=SERVICE_LIST will skip all the "
+        "SERVICE_LIST services offered by any server.\n"
+        "\n"
+        "The commands offered by the dataLoger are the following: \n";
+    cout << setw(20) << DataLogger::fConfigDay << " : specify the path where to put the nightly files\n";
+    cout << setw(20) << DataLogger::fConfigRun << " : specify the path where to put the run files\n";
+    cout << setw(20) << DataLogger::fConfigRunNumber << " : specify the run number\n";
+    cout << setw(20) << DataLogger::fConfigLog << " : log a particular message\n";
+    cout << setw(20) << DataLogger::fTransStart << " : start the nightly logging\n";
+    cout << setw(20) << DataLogger::fTransStop << " : stop the nightly logging\n";
+    cout << setw(20) << DataLogger::fTransStartRun << " : start the run logging\n";
+    cout << setw(20) << DataLogger::fTransStopRun << " : stop the run logging\n";
+    cout << setw(20) << DataLogger::fTransReset << " : stop any logging and/or recover from an error state\n";
+    cout << setw(20) << DataLogger::fTransWait << " : go to the wait for run number state\n";
+    cout << setw(20) << DataLogger::fPrintCommand << " : print the current state of the logger to the shell\n";
+    cout << setw(20) << DataLogger::fDebugOnOff << " : turn on or off the debug mode\n";
+    cout << setw(20) << DataLogger::fStatsPeriod << " : set the periodicity of the statistics. 0 disable them\n";
+    cout << endl;
 }
 
