Index: /trunk/FACT++/src/rootifysql.cc
===================================================================
--- /trunk/FACT++/src/rootifysql.cc	(revision 18500)
+++ /trunk/FACT++/src/rootifysql.cc	(revision 18501)
@@ -27,5 +27,5 @@
         ("tree,t",        var<string>("Result"),       "Name of the root tree")
         ("display,d",     po_switch(),                 "Displays contents on the screen (most usefull in combination with mysql statements as SHOW or EXPLAIN)")
-        ("no-out,n",      po_switch(),                 "Redirect the output file to /dev/null")
+        ("null,n",        po_switch(),                 "Redirect the output file to /dev/null")
         ("delimiter",     var<string>(""),             "The delimiter used if contents are displayed with --display (default=\\t)")
         ("verbose,v",     var<uint16_t>(1),            "Verbosity (0: quiet, 1: default, 2: more, 3, ...)")
@@ -160,5 +160,5 @@
         query += '\n';
 
-    if (verbose>1)
+    if (verbose>2)
         cout << '\n' << query << endl;
 
@@ -199,5 +199,5 @@
         cout << "Trying to setup " << r.size() << " branches..." << endl;
 
-    if (verbose>2)
+    if (verbose>1)
         cout << endl;
 
@@ -205,5 +205,5 @@
 
     vector<double>  buf(l.size());
-    vector<uint8_t> typ(l.size(),'-');
+    vector<uint8_t> typ(l.size(),'n');
 
     UInt_t cols = 0;
@@ -230,8 +230,10 @@
                             typ[i] = 'C';
 
-        if (verbose>2)
-            cout << l[i].c_str() << " [" << typ[i] << "] " << t << '\n';
-
-        if (typ[i]!='V' && typ[i]!='C')
+        const bool use = typ[i]!='V' && typ[i]!='C';
+
+        if (verbose>1)
+            cout << (use?" + ":" - ") << l[i].c_str() << " [" << t << "] {" << typ[i] << "}\n";
+
+        if (use)
         {
             ttree->Branch(l[i].c_str(), buf.data()+i);
@@ -241,5 +243,5 @@
     // -------------------------------------------------------------------------
 
-    if (verbose>2)
+    if (verbose>1)
         cout << endl;
     if (verbose>0)
