mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-16 11:46:25 +01:00
stacktraces to help track down missing actions
This commit is contained in:
parent
59ed3d7138
commit
009a0e6ffb
1 changed files with 2 additions and 0 deletions
|
|
@ -76,6 +76,7 @@ ActionManager::MissingActionException::MissingActionException (std::string const
|
|||
: missing_action_name (str)
|
||||
{
|
||||
std::cerr << "MAE: " << str << std::endl;
|
||||
PBD::stacktrace (std::cerr, 9);
|
||||
}
|
||||
|
||||
const char *
|
||||
|
|
@ -262,6 +263,7 @@ ActionManager::get_action (const string& name, bool or_die)
|
|||
}
|
||||
|
||||
cerr << "Failed to find action: [" << name << ']' << endl;
|
||||
PBD::stacktrace (std::cerr, 8);
|
||||
return RefPtr<Action>();
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue