summaryrefslogtreecommitdiffstats
path: root/src/AtomReader.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2012-12-21 18:48:12 +0000
committerDavid Robillard <d@drobilla.net>2012-12-21 18:48:12 +0000
commit6b62e037f2f828ec6bf9c7e0066db32cfb54abef (patch)
tree49c52f02a159b01caa4595105655fb31fa471059 /src/AtomReader.cpp
parentd1c3c41bf7a76d2eb9de79c44c04824c1bfc7768 (diff)
downloadingen-6b62e037f2f828ec6bf9c7e0066db32cfb54abef.tar.gz
ingen-6b62e037f2f828ec6bf9c7e0066db32cfb54abef.tar.bz2
ingen-6b62e037f2f828ec6bf9c7e0066db32cfb54abef.zip
Improved error handling in Python by loading error descriptions from data.
Fix connecting and disconnecting with ingenish. Fix path problems. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@4875 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/AtomReader.cpp')
-rw-r--r--src/AtomReader.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/AtomReader.cpp b/src/AtomReader.cpp
index 8e0d296d..f7b95177 100644
--- a/src/AtomReader.cpp
+++ b/src/AtomReader.cpp
@@ -188,7 +188,8 @@ AtomReader::write(const LV2_Atom* msg)
if (tail_path && head_path) {
_iface.connect(*tail_path, *head_path);
} else {
- _log.warn("Edge has non-path tail or head\n");
+ _log.warn(Raul::fmt("Edge %1% => %2% has non-path tail or head\n")
+ % atom_to_uri(tail) % atom_to_uri(head));
}
} else {
Ingen::Resource::Properties props;