|
From: Tapio V. <aa...@us...> - 2009-11-08 08:30:15
|
Module: performous
Branch: dance
Commit: 41d457c53f1b05c46b5c980a308cbc2d745a4281
Author: Lasse Karkkainen <tro...@tr...>
Date: Wed Oct 28 22:55:19 2009 +0200
Revert "Added debug for OSX testing"
This reverts commit b3da5bce553e47bc288dbce6bd3b3664cf0f8028.
---
libs/libda/plugins/audio_dev_jack.cpp | 7 -------
libs/plugin++/include/plugin++/loader.hpp | 2 --
2 files changed, 0 insertions(+), 9 deletions(-)
diff --git a/libs/libda/plugins/audio_dev_jack.cpp b/libs/libda/plugins/audio_dev_jack.cpp
index e9b25eb..aea5a24 100644
--- a/libs/libda/plugins/audio_dev_jack.cpp
+++ b/libs/libda/plugins/audio_dev_jack.cpp
@@ -2,17 +2,10 @@
#include <boost/lexical_cast.hpp>
#include <jack/jack.h>
#include <algorithm>
-#include <iostream>
namespace {
using namespace da;
- struct Foo {
- Foo() {
- std::cerr << "JACK driver loading..." << std::endl;
- }
- } foo;
-
void handle_and_throw(jack_status_t status) {
if (status & JackServerFailed) throw std::runtime_error("Unable to connect to the JACK server");
if (status & JackServerError) throw std::runtime_error("Communication error with the JACK server");
diff --git a/libs/plugin++/include/plugin++/loader.hpp b/libs/plugin++/include/plugin++/loader.hpp
index 396da3a..89519e6 100644
--- a/libs/plugin++/include/plugin++/loader.hpp
+++ b/libs/plugin++/include/plugin++/loader.hpp
@@ -31,9 +31,7 @@ namespace plugin {
void load(fs::path const& path) {
for (fs::directory_iterator it(path), end; it != end; ++it) {
try {
- std::cerr << "Loading " << it->string() << std::endl;
dlls.push_back(new dll(it->string()));
- std::cerr << "Loaded." << std::endl;
} catch (std::runtime_error const& e) {
std::cerr << e.what() << std::endl;
} catch (...) {
|