summaryrefslogtreecommitdiffstats
path: root/src/server
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2012-05-12 02:35:45 +0000
committerDavid Robillard <d@drobilla.net>2012-05-12 02:35:45 +0000
commit271b3f9d7f376cbbaef202ef6f898e5f9bb4c324 (patch)
tree87a985b6ec42ffb2d06e0349623a98ad6fa65e78 /src/server
parent90e7284b2f3c9e491497030f4443130c1b6f98bf (diff)
downloadingen-271b3f9d7f376cbbaef202ef6f898e5f9bb4c324.tar.gz
ingen-271b3f9d7f376cbbaef202ef6f898e5f9bb4c324.tar.bz2
ingen-271b3f9d7f376cbbaef202ef6f898e5f9bb4c324.zip
Fix compilation of debug stuff.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@4366 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/server')
-rw-r--r--src/server/events/SetMetadata.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/server/events/SetMetadata.cpp b/src/server/events/SetMetadata.cpp
index 842d7cdf..7e9c531d 100644
--- a/src/server/events/SetMetadata.cpp
+++ b/src/server/events/SetMetadata.cpp
@@ -75,20 +75,20 @@ SetMetadata::SetMetadata(Engine& engine,
}
/*
- LOG(info) << "Patch " << subject << " : " << context << " {" << endl;
+ LOG(Raul::info) << "Patch " << subject << " : " << context << " {" << std::endl;
typedef Resource::Properties::const_iterator iterator;
for (iterator i = properties.begin(); i != properties.end(); ++i) {
- LOG(info) << " + " << i->first
- << " = " << engine.world()->forge().str(i->second)
- << " :: " << engine.world()->uri_map().unmap_uri(i->second.type()) << endl;
+ LOG(Raul::info) << " + " << i->first
+ << " = " << engine.world()->forge().str(i->second)
+ << " :: " << engine.world()->uri_map().unmap_uri(i->second.type()) << std::endl;
}
typedef Resource::Properties::const_iterator iterator;
for (iterator i = remove.begin(); i != remove.end(); ++i) {
- LOG(info) << " - " << i->first
+ LOG(Raul::info) << " - " << i->first
<< " = " << engine.world()->forge().str(i->second)
- << " :: " << engine.world()->uri_map().unmap_uri(i->second.type()) << endl;
+ << " :: " << engine.world()->uri_map().unmap_uri(i->second.type()) << std::endl;
}
- LOG(info) << "}" << endl;
+ LOG(Raul::info) << "}" << std::endl;
*/
}