set up control_by_parameter map in a Mackie::Strip so that subsequent array-syntax...
[ardour.git] / libs / pbd / debug.cc
index 0c9119d002c0550e7d131e53959437820d7ff9ab..af8cd052cde2f594d20bef79308b2739176daa5f 100644 (file)
@@ -83,7 +83,7 @@ PBD::new_debug_bit (const char* name)
 void
 PBD::debug_print (const char* prefix, string str)
 {
-       cerr << prefix << ": " << str;
+       cout << prefix << ": " << str;
 }
 
 int
@@ -111,13 +111,13 @@ PBD::parse_debug_options (const char* str)
 
                         if (strncasecmp (cstr, i->first, strlen (cstr)) == 0) {
                                bits |= i->second;
-                               cerr << i->first << " set ... debug bits now set to " << bits << " using " << i->second << endl;
+                               cout << i->first << " set ... debug bits now set to " << bits << " using " << i->second << endl;
                         }
                 }
        }
-       
+
        debug_bits = bits;
-       
+
        return 0;
 }
 
@@ -125,7 +125,7 @@ void
 PBD::list_debug_options ()
 {
        cout << _("The following debug options are available. Separate multiple options with commas.\nNames are case-insensitive and can be abbreviated.") << endl << endl;
-       cout << '\t' << X_("all") << endl; 
+       cout << '\t' << X_("all") << endl;
 
        vector<string> options;