We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9a5dc1d commit 80a25afCopy full SHA for 80a25af
1 file changed
tests/stress_test.cpp
@@ -69,9 +69,6 @@ void stress_test()
69
produced_data.insert(produced_data.end(), data.begin(), data.end());
70
total_written += items_to_write;
71
72
- std::cout << "Producer: Wrote " << items_to_write
73
- << " items (total: " << total_written << ")\n";
74
-
75
std::this_thread::yield();
76
}
77
producer_done.store(true, std::memory_order_release); // Signal completion
@@ -122,9 +119,6 @@ void stress_test()
122
119
123
120
total_read += items_to_read;
124
121
125
- std::cout << "Consumer: Read " << items_to_read
126
- << " items (total: " << total_read << ")\n";
127
128
129
130
0 commit comments