mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-26 15:08:17 +01:00
Fix printing from Lua DSP context (#9202)
This commit is contained in:
parent
7e4bb2ff68
commit
a1dee6cba2
1 changed files with 5 additions and 1 deletions
|
|
@ -203,7 +203,11 @@ LuaProc::lua_print (std::string s) {
|
|||
#ifndef NDEBUG
|
||||
std::cout << "LuaProc: " << s << "\n";
|
||||
#endif
|
||||
PBD::info << "LuaProc: " << s << "\n";
|
||||
/* This is dangerous and can lead to crashes.A
|
||||
* PBD::Transmitter is neither thread-safe nor rt-safe.
|
||||
* (see also fe0e997335c34af0d71e7536fd507e1cab322d24)
|
||||
*/
|
||||
PBD::info << "LuaProc: " << s << endmsg;
|
||||
}
|
||||
|
||||
bool
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue