summaryrefslogtreecommitdiffstats
path: root/src/URIMap.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2019-03-08 12:38:19 +0100
committerDavid Robillard <d@drobilla.net>2019-03-09 00:43:43 +0100
commit532af2452bac2cdd0e2732ad145fdc2b141a4afc (patch)
tree0b078c37a137ef0da3a1e76bc150e99f65f6d7dc /src/URIMap.cpp
parent6bb3c48972d172fec244afae08a905e2246d9cda (diff)
downloadingen-532af2452bac2cdd0e2732ad145fdc2b141a4afc.tar.gz
ingen-532af2452bac2cdd0e2732ad145fdc2b141a4afc.tar.bz2
ingen-532af2452bac2cdd0e2732ad145fdc2b141a4afc.zip
Localise dependency on boost::format and improve logging API
Diffstat (limited to 'src/URIMap.cpp')
-rw-r--r--src/URIMap.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/URIMap.cpp b/src/URIMap.cpp
index 7c5774f8..46ca0108 100644
--- a/src/URIMap.cpp
+++ b/src/URIMap.cpp
@@ -64,7 +64,7 @@ LV2_URID
URIMap::URIDMapFeature::map(const char* uri)
{
if (!URI::is_valid(uri)) {
- log.error(fmt("Attempt to map invalid URI <%1%>\n") % uri);
+ log.error("Attempt to map invalid URI <%1%>\n", uri);
return 0;
}
return urid_map.map(urid_map.handle, uri);