summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/serialisation/Parser.cpp6
-rw-r--r--src/server/BufferFactory.cpp3
2 files changed, 0 insertions, 9 deletions
diff --git a/src/serialisation/Parser.cpp b/src/serialisation/Parser.cpp
index 19c1f957..d6e613c8 100644
--- a/src/serialisation/Parser.cpp
+++ b/src/serialisation/Parser.cpp
@@ -125,12 +125,6 @@ get_properties(Ingen::Shared::World* world,
atomm = world->forge().alloc(
atom->size, atom->type, LV2_ATOM_BODY(atom));
}
- /*
- std::cerr << "READ PROPERTY " << i.get_predicate()
- << " = " << world->forge().str(atomm)
- << " :: " << unmap->unmap(unmap->handle, atom->type)
- << std::endl;
- */
props.insert(make_pair(i.get_predicate().to_string(), atomm));
}
}
diff --git a/src/server/BufferFactory.cpp b/src/server/BufferFactory.cpp
index 6be8b2ea..ee9699b1 100644
--- a/src/server/BufferFactory.cpp
+++ b/src/server/BufferFactory.cpp
@@ -143,14 +143,11 @@ BufferFactory::create(LV2_URID type, uint32_t capacity)
if (type == _uris->atom_Float) {
assert(capacity >= sizeof(LV2_Atom_Float));
buffer = new AudioBuffer(*this, type, capacity);
- info << "NEW FLOAT BUFFER " << buffer << " :: " << type << std::endl;
} else if (type == _uris->atom_Sound) {
assert(capacity >= default_buffer_size(_uris->atom_Sound));
buffer = new AudioBuffer(*this, type, capacity);
- info << "NEW AUDIO BUFFER " << buffer << " :: " << type << std::endl;
} else {
buffer = new Buffer(*this, type, capacity);
- info << "NEW ATOM BUFFER " << buffer << " :: " << type << std::endl;
}
buffer->atom()->type = type;