summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2015-09-11 18:58:37 +0000
committerDavid Robillard <d@drobilla.net>2015-09-11 18:58:37 +0000
commit66b9bd42b36a3c9b186b5c1dfaf4fb287c6f23cc (patch)
tree725ccd6f3b4a7c8b6d81f033f94454b364487410 /src
parent183195508e8f45bc571fac8955789e70570b8a1b (diff)
downloadingen-66b9bd42b36a3c9b186b5c1dfaf4fb287c6f23cc.tar.gz
ingen-66b9bd42b36a3c9b186b5c1dfaf4fb287c6f23cc.tar.bz2
ingen-66b9bd42b36a3c9b186b5c1dfaf4fb287c6f23cc.zip
Remove debug printing stuff.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5722 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src')
-rw-r--r--src/Log.cpp3
-rw-r--r--src/server/PreProcessor.cpp1
2 files changed, 0 insertions, 4 deletions
diff --git a/src/Log.cpp b/src/Log.cpp
index ccfc2e7c..c72f3dbb 100644
--- a/src/Log.cpp
+++ b/src/Log.cpp
@@ -44,7 +44,6 @@ Log::error(const std::string& msg)
} else {
std::cerr << ANSI_RED << msg << ANSI_RESET;
if (_flush) {
- std::cerr << "flush!\n";
std::flush(std::cerr);
}
}
@@ -58,7 +57,6 @@ Log::warn(const std::string& msg)
} else {
std::cerr << ANSI_YELLOW << msg << ANSI_RESET;
if (_flush) {
- std::cerr << "flush!\n";
std::flush(std::cerr);
}
}
@@ -72,7 +70,6 @@ Log::info(const std::string& msg)
} else {
std::cout << msg;
if (_flush) {
- std::cerr << "flush!\n";
std::flush(std::cout);
}
}
diff --git a/src/server/PreProcessor.cpp b/src/server/PreProcessor.cpp
index 1223aad4..6c514f00 100644
--- a/src/server/PreProcessor.cpp
+++ b/src/server/PreProcessor.cpp
@@ -15,7 +15,6 @@
*/
#include <stdexcept>
-#include <iostream>
#include "Event.hpp"
#include "PostProcessor.hpp"