Remove excessive debug logging

This commit is contained in:
2018-07-11 08:33:00 +02:00
parent ae18adc38f
commit 1eb850f001
2 changed files with 0 additions and 9 deletions
-4
View File
@@ -225,10 +225,6 @@ hsize_t H5Writer::prepare_storage_for_data(const string& dataset_name, const siz
relative_data_index = data_index - ((frame_chunk - 1) * frames_per_file);
}
#ifdef DEBUG_OUTPUT
cout << "[H5Writer::prepare_storage_for_data] Received frame index " << data_index << " and processed as relative frame index " << relative_data_index << endl;
#endif
// Open the file if needed.
if (!is_file_open()) {
create_file();
-5
View File
@@ -130,11 +130,6 @@ char* RingBuffer::get_buffer_slot_address(size_t buffer_slot_index)
throw runtime_error(error_message.str());
}
#ifdef DEBUG_OUTPUT
cout << "[RingBuffer::get_buffer_slot_address] For buffer_slot_index " << buffer_slot_index;
cout << " the calculated memory address is " << long(slot_memory_address) << endl;
#endif
return slot_memory_address;
}