Skip to content
Snippets Groups Projects
Commit 56bf0a81 authored by Martin Christoph Hierholzer's avatar Martin Christoph Hierholzer
Browse files

removed debug couts

parent bc2a536d
No related branches found
No related tags found
No related merge requests found
...@@ -170,7 +170,6 @@ void Application::run() { ...@@ -170,7 +170,6 @@ void Application::run() {
// start the threads for the modules // start the threads for the modules
for(auto& module : getSubmoduleListRecursive()) { for(auto& module : getSubmoduleListRecursive()) {
std::cout << module->getFullDescription() << std::endl;
module->run(); module->run();
} }
for(auto& deviceModule : deviceModuleList) { for(auto& deviceModule : deviceModuleList) {
......
...@@ -62,7 +62,6 @@ namespace ChimeraTK { ...@@ -62,7 +62,6 @@ namespace ChimeraTK {
Application::registerThread("AM_" + getName()); Application::registerThread("AM_" + getName());
Application::testableModeLock("start"); Application::testableModeLock("start");
// enter the main loop // enter the main loop
std::cout << "mainLoopWrapper" << std::endl;
mainLoop(); mainLoop();
Application::testableModeUnlock("terminate"); Application::testableModeUnlock("terminate");
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment