diff --git a/lib/src/common/buffer_pool.cc b/lib/src/common/buffer_pool.cc index cfe8d56a5..5d74da166 100644 --- a/lib/src/common/buffer_pool.cc +++ b/lib/src/common/buffer_pool.cc @@ -39,7 +39,6 @@ byte_buffer_pool* byte_buffer_pool::get_instance(int capacity) { pthread_mutex_lock(&instance_mutex); if(NULL == instance) { - printf("Creating buffer pool capacity=%d\n", capacity); instance = new byte_buffer_pool(capacity); } pthread_mutex_unlock(&instance_mutex);