From cb5e934666e128e27faa95587fbdecf01f0e324d Mon Sep 17 00:00:00 2001 From: David Robillard Date: Wed, 6 Jan 2010 23:49:17 +0000 Subject: Do all logging output via Raul streams. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@2349 a436a847-0d15-0410-975c-d299462d15a1 --- src/shared/LV2URIMap.cpp | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'src/shared/LV2URIMap.cpp') diff --git a/src/shared/LV2URIMap.cpp b/src/shared/LV2URIMap.cpp index e401f6cb..c06d9187 100644 --- a/src/shared/LV2URIMap.cpp +++ b/src/shared/LV2URIMap.cpp @@ -17,12 +17,13 @@ #define __STDC_LIMIT_MACROS 1 #include -#include #include +#include "raul/log.hpp" #include "object.lv2/object.h" #include "LV2URIMap.hpp" using namespace std; +using namespace Raul; namespace Ingen { namespace Shared { @@ -74,8 +75,8 @@ LV2URIMap::uri_map_uri_to_id(LV2_URI_Map_Callback_Data callback_data, me->uri_map.insert(make_pair(string(uri), ret)); } - /*cout << "URI MAP (" << (map ? (void*)map : NULL) - << "): " << uri << " -> " << ret << endl;*/ + debug << "URI MAP (" << (map ? (void*)map : NULL) + << "): " << uri << " -> " << ret << endl; assert(ret <= UINT16_MAX); return ret; -- cgit v1.2.1