tool/CommandDebug.cpp
changeset 1804 742607c464c4
parent 1363 11c0b2caa253
child 1826 ec6223c3b7ec
--- a/tool/CommandDebug.cpp	Tue Feb 02 19:38:32 2010 +0100
+++ b/tool/CommandDebug.cpp	Fri Feb 05 10:29:47 2010 +0100
@@ -46,21 +46,21 @@
 {
     stringstream str;
 
-	str << getName() << " <LEVEL>" << endl
-		<< endl
-    	<< getBriefDescription() << endl
-    	<< endl
-    	<< "Debug messages are printed to syslog." << endl
-    	<< endl
-    	<< "Arguments:" << endl
-    	<< "  LEVEL can have one of the following values:" << endl
-    	<< "        0 for no debugging output," << endl
-    	<< "        1 for some debug messages, or" << endl
-    	<< "        2 for printing all frame contents (use with caution!)."
-		<< endl << endl
-    	<< numericInfo();
+    str << getName() << " <LEVEL>" << endl
+        << endl
+        << getBriefDescription() << endl
+        << endl
+        << "Debug messages are printed to syslog." << endl
+        << endl
+        << "Arguments:" << endl
+        << "  LEVEL can have one of the following values:" << endl
+        << "        0 for no debugging output," << endl
+        << "        1 for some debug messages, or" << endl
+        << "        2 for printing all frame contents (use with caution!)."
+        << endl << endl
+        << numericInfo();
 
-	return str.str();
+    return str.str();
 }
 
 /****************************************************************************/