summaryrefslogtreecommitdiffstats
path: root/src/client/OSCClientReceiver.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2010-01-07 05:30:58 +0000
committerDavid Robillard <d@drobilla.net>2010-01-07 05:30:58 +0000
commit2cd6cbac63b4eafde20698e918151b27908fd335 (patch)
tree82790b280d3a9d1f1c82bf11c8111c59a5b88032 /src/client/OSCClientReceiver.cpp
parent1de7af2e453735869122ca61f65be157d7b799bd (diff)
downloadingen-2cd6cbac63b4eafde20698e918151b27908fd335.tar.gz
ingen-2cd6cbac63b4eafde20698e918151b27908fd335.tar.bz2
ingen-2cd6cbac63b4eafde20698e918151b27908fd335.zip
Better log output.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@2361 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/client/OSCClientReceiver.cpp')
-rw-r--r--src/client/OSCClientReceiver.cpp9
1 files changed, 1 insertions, 8 deletions
diff --git a/src/client/OSCClientReceiver.cpp b/src/client/OSCClientReceiver.cpp
index 9a1808a2..09687f2c 100644
--- a/src/client/OSCClientReceiver.cpp
+++ b/src/client/OSCClientReceiver.cpp
@@ -105,7 +105,7 @@ OSCClientReceiver::stop()
int
OSCClientReceiver::generic_cb(const char* path, const char* types, lo_arg** argv, int argc, void* data, void* user_data)
{
- printf("[OSCMsg] %s (%s)\t", path, types);
+ printf("[OSCClientReceiver] %s (%s)\t", path, types);
for (int i=0; i < argc; ++i) {
lo_arg_pp(lo_type(types[i]), argv[i]);
@@ -113,13 +113,6 @@ OSCClientReceiver::generic_cb(const char* path, const char* types, lo_arg** argv
}
printf("\n");
- /*for (int i=0; i < argc; ++i) {
- printf(" '%c' ", types[i]);
- lo_arg_pp(lo_type(types[i]), argv[i]);
- printf("\n");
- }
- printf("\n");*/
-
return 1; // not handled
}