summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2011-09-23 20:14:07 +0000
committerDavid Robillard <d@drobilla.net>2011-09-23 20:14:07 +0000
commit53347ae88e643ce3fea887b56e843c0fa464eee5 (patch)
tree1dc3bc05b7d0b4446c867502518129f6fea9ba29
parent53f83f508516d2dddf027782dce6dd045bcf1943 (diff)
downloadingen-53347ae88e643ce3fea887b56e843c0fa464eee5.tar.gz
ingen-53347ae88e643ce3fea887b56e843c0fa464eee5.tar.bz2
ingen-53347ae88e643ce3fea887b56e843c0fa464eee5.zip
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
-rw-r--r--src/client/ClientStore.cpp5
1 files changed, 2 insertions, 3 deletions
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<PortModel> port = PtrCast<PortModel>(_object(path));
- if (port)
+ if (port) {
port->signal_activity().emit(value);
- else
- LOG(error) << "Activity for non-existent port " << path << endl;
+ }
}
SharedPtr<PatchModel>