diff --git a/random/RandomGeneratorThread.cpp b/random/RandomGeneratorThread.cpp index 524d74ca..671fd692 100644 --- a/random/RandomGeneratorThread.cpp +++ b/random/RandomGeneratorThread.cpp @@ -16,11 +16,9 @@ namespace cpputils { } Data RandomGeneratorThread::_generateRandomData(size_t size) { - std::cout << "Generate " << static_cast(size)/1024 << " KB" << std::endl; Data newRandom(size); _randomGenerator.GenerateBlock(static_cast(newRandom.data()), size); - std::cout << "Generate " << static_cast(size)/1024 << " KB done" << std::endl; return newRandom; } -} \ No newline at end of file +}