summaryrefslogtreecommitdiffstats
path: root/src/server/BufferFactory.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2012-03-20 00:09:41 +0000
committerDavid Robillard <d@drobilla.net>2012-03-20 00:09:41 +0000
commitaae10599a5c0d8fdae5fd962533a1d54385f733c (patch)
tree9b7e523ca272fa4cbb427205c4183457ca98c3da /src/server/BufferFactory.cpp
parent254b434f0a79fea54bd963e8ff2e845a5b0cd3a6 (diff)
downloadingen-aae10599a5c0d8fdae5fd962533a1d54385f733c.tar.gz
ingen-aae10599a5c0d8fdae5fd962533a1d54385f733c.tar.bz2
ingen-aae10599a5c0d8fdae5fd962533a1d54385f733c.zip
Sshh.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@4081 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/server/BufferFactory.cpp')
-rw-r--r--src/server/BufferFactory.cpp3
1 files changed, 0 insertions, 3 deletions
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;