From af282195f9ced2947752154245d2ca13c670bef1 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sat, 17 Nov 2012 19:23:57 +0000 Subject: Don't complain about ingen:activity property for unknown object since it's transient anyway. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@4821 a436a847-0d15-0410-975c-d299462d15a1 --- src/client/ClientStore.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/client/ClientStore.cpp b/src/client/ClientStore.cpp index 20928d33..71e28c09 100644 --- a/src/client/ClientStore.cpp +++ b/src/client/ClientStore.cpp @@ -365,11 +365,12 @@ ClientStore::set_property(const Raul::URI& subject_uri, } } else { SharedPtr plugin = _plugin(subject_uri); - if (plugin) + if (plugin) { plugin->set_property(predicate, value); - else + } else if (predicate != _uris.ingen_activity) { _log.warn(Raul::fmt("Property <%1%> for unknown object %2%\n") % predicate.c_str() % subject_uri.c_str()); + } } } -- cgit v1.2.1