Mercurial > hg > svcore
comparison plugin/RealTimePluginInstance.cpp @ 687:06f13a3b9e9e debug-output
Convert many cerrs to DEBUGs
author | Chris Cannam |
---|---|
date | Mon, 16 May 2011 17:19:09 +0100 |
parents | b4a8d8221eaf |
children | 1424aa29ae95 |
comparison
equal
deleted
inserted
replaced
686:b4a8d8221eaf | 687:06f13a3b9e9e |
---|---|
26 #include <iostream> | 26 #include <iostream> |
27 | 27 |
28 | 28 |
29 RealTimePluginInstance::~RealTimePluginInstance() | 29 RealTimePluginInstance::~RealTimePluginInstance() |
30 { | 30 { |
31 // std::cerr << "RealTimePluginInstance::~RealTimePluginInstance" << std::endl; | 31 // DEBUG << "RealTimePluginInstance::~RealTimePluginInstance" << endl; |
32 | 32 |
33 if (m_factory) { | 33 if (m_factory) { |
34 // std::cerr << "Asking factory to release " << m_identifier << std::endl; | 34 // DEBUG << "Asking factory to release " << m_identifier << endl; |
35 | 35 |
36 m_factory->releasePlugin(this, m_identifier); | 36 m_factory->releasePlugin(this, m_identifier); |
37 } | 37 } |
38 } | 38 } |
39 | 39 |