mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-03 12:19:33 +01:00
prevent relaying during an undo/redo operation; remove some debug output
git-svn-id: svn://localhost/ardour2/branches/3.0@6728 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
0e10f8a290
commit
93dac756a2
5 changed files with 17 additions and 12 deletions
|
|
@ -40,7 +40,6 @@ PBD::new_debug_bit (const char* name)
|
|||
{
|
||||
uint64_t ret;
|
||||
_debug_bit_map.insert (make_pair (name, _debug_bit));
|
||||
cerr << "debug name " << name << " = " << _debug_bit << endl;
|
||||
ret = _debug_bit;
|
||||
_debug_bit <<= 1;
|
||||
return ret;
|
||||
|
|
@ -83,7 +82,6 @@ PBD::parse_debug_options (const char* str)
|
|||
|
||||
for (map<const char*,uint64_t>::iterator i = _debug_bit_map.begin(); i != _debug_bit_map.end(); ++i) {
|
||||
if (strncasecmp (p, i->first, strlen (p)) == 0) {
|
||||
cerr << "debug args matched for " << p << " set bit " << i->second << endl;
|
||||
bits |= i->second;
|
||||
}
|
||||
}
|
||||
|
|
@ -99,10 +97,10 @@ PBD::parse_debug_options (const char* str)
|
|||
void
|
||||
PBD::list_debug_options ()
|
||||
{
|
||||
cerr << _("The following debug options are available. Separate multipe options with commas.\nNames are case-insensitive and can be abbreviated.") << endl << endl;
|
||||
cerr << "\tAll" << endl;
|
||||
cout << _("The following debug options are available. Separate multipe options with commas.\nNames are case-insensitive and can be abbreviated.") << endl << endl;
|
||||
cout << "\tAll" << endl;
|
||||
|
||||
for (map<const char*,uint64_t>::iterator i = _debug_bit_map.begin(); i != _debug_bit_map.end(); ++i) {
|
||||
cerr << "\t" << i->first << endl;
|
||||
cout << "\t" << i->first << endl;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue