summaryrefslogtreecommitdiffstats
path: root/src/libs/engine
diff options
context:
space:
mode:
Diffstat (limited to 'src/libs/engine')
-rw-r--r--src/libs/engine/NodeFactory.cpp2
-rw-r--r--src/libs/engine/OSCEngineReceiver.cpp5
2 files changed, 3 insertions, 4 deletions
diff --git a/src/libs/engine/NodeFactory.cpp b/src/libs/engine/NodeFactory.cpp
index 649b4c71..ea670ab0 100644
--- a/src/libs/engine/NodeFactory.cpp
+++ b/src/libs/engine/NodeFactory.cpp
@@ -570,7 +570,7 @@ NodeFactory::load_ladspa_plugins()
// Ignore stupid libtool files. Kludge alert.
if (full_lib_name.substr(full_lib_name.length()-3) == ".la") {
- cerr << "WARNING: Skipping stupid libtool file " << pfile->d_name << endl;
+ //cerr << "WARNING: Skipping stupid libtool file " << pfile->d_name << endl;
continue;
}
diff --git a/src/libs/engine/OSCEngineReceiver.cpp b/src/libs/engine/OSCEngineReceiver.cpp
index d750118e..3229aed5 100644
--- a/src/libs/engine/OSCEngineReceiver.cpp
+++ b/src/libs/engine/OSCEngineReceiver.cpp
@@ -901,12 +901,11 @@ OSCEngineReceiver::_dssi_cb(const char* path, const char* types, lo_arg** argv,
int
OSCEngineReceiver::generic_cb(const char* path, const char* types, lo_arg** argv, int argc, lo_message msg, void* user_data)
{
- printf("[OSCMsg] %s\n", path);
+ printf("[OSCMsg] %s (%s)\t", path, types);
for (int i=0; i < argc; ++i) {
- printf(" '%c' ", types[i]);
lo_arg_pp(lo_type(types[i]), argv[i]);
- printf("\n");
+ printf("\t");
}
printf("\n");