From 53347ae88e643ce3fea887b56e843c0fa464eee5 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Fri, 23 Sep 2011 20:14:07 +0000 Subject: Disable harmless error message about activity notification for nonexistent ports git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@3477 a436a847-0d15-0410-975c-d299462d15a1 --- src/client/ClientStore.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'src/client') diff --git a/src/client/ClientStore.cpp b/src/client/ClientStore.cpp index 6725d961..fb90f390 100644 --- a/src/client/ClientStore.cpp +++ b/src/client/ClientStore.cpp @@ -422,10 +422,9 @@ void ClientStore::activity(const Path& path, const Atom& value) { SharedPtr port = PtrCast(_object(path)); - if (port) + if (port) { port->signal_activity().emit(value); - else - LOG(error) << "Activity for non-existent port " << path << endl; + } } SharedPtr -- cgit v1.2.1