removed debug info for writer

This commit is contained in:
bronku 2025-11-13 18:01:59 +01:00
parent 8399778902
commit 1d1d440cb9

View file

@ -45,8 +45,8 @@ public:
bool write(const Record& record)
{
write_buffer[current_index] = record;
++current_index;
++total_writes_count;
current_index++;
total_writes_count++;
if (current_index >= buffer_size) {
return flush_buffer();