From 22e34e9132668b9b87a765c090ff86e449d01273 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Fri, 29 Jul 2016 22:43:31 -0400 Subject: Use more Turtley debug dump output --- src/client/ClientStore.cpp | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'src/client') diff --git a/src/client/ClientStore.cpp b/src/client/ClientStore.cpp index 7afa4aee..3a90596d 100644 --- a/src/client/ClientStore.cpp +++ b/src/client/ClientStore.cpp @@ -1,6 +1,6 @@ /* This file is part of Ingen. - Copyright 2007-2015 David Robillard + Copyright 2007-2016 David Robillard Ingen is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free @@ -256,8 +256,8 @@ ClientStore::put(const Raul::URI& uri, #ifdef INGEN_CLIENT_STORE_DUMP std::cerr << "Client put " << uri << " {" << endl; for (auto p : properties) - std::cerr << '\t' << p.first << " = " << _uris.forge.str(p.second) - << " :: " << p.second.type() << endl; + std::cerr << '\t' << p.first << " " << _uris.forge.str(p.second) + << "^^" << _uris.forge.str(_uris.forge.make_urid(p.second.type()), true) << endl; std::cerr << "}" << endl; #endif @@ -369,12 +369,12 @@ ClientStore::delta(const Raul::URI& uri, std::cerr << "Client delta " << uri << " {" << endl; for (auto r : remove) std::cerr << " - " << r.first - << " = " << _uris.forge.str(r.second) - << " :: " << r.second.type() << endl; + << " " << _uris.forge.str(r.second) + << "^^" << _uris.forge.str(_uris.forge.make_urid(r.second.type()), true) << endl; for (auto a : add) std::cerr << " + " << a.first - << " = " << _uris.forge.str(a.second) - << " :: " << a.second.type() << endl; + << " " << _uris.forge.str(a.second) + << "^^" << _uris.forge.str(_uris.forge.make_urid(a.second.type()), true) << endl; std::cerr << "}" << endl; #endif -- cgit v1.2.1