[Summary] Removed debug output

This commit is contained in:
GZharun 2015-02-13 17:58:48 +02:00
parent 4a68dcd968
commit 6efc1522ed

View file

@ -25,7 +25,7 @@
#include "pbd/pool.h"
#include "pbd/pthread_utils.h"
#include "pbd/stacktrace.h"
#include "pbd/error.h"
#include "pbd/debug.h"
#include "pbd/compose.h"
@ -184,8 +184,7 @@ PerThreadPool::per_thread_pool ()
{
CrossThreadPool* p = _key.get();
if (!p) {
PBD::stacktrace(std::cout, 100);
fatal << "programming error: no per-thread pool \"" << _name << "\" for thread " << pthread_name() << endmsg;
fatal << "programming error: no per-thread pool \"" << _name << "\" for thread " << pthread_name() << endmsg;
/*NOTREACHED*/
}
return p;