0
0
mirror of https://github.com/yse/easy_profiler.git synced 2024-12-26 08:01:51 +08:00

Add more info for log

This commit is contained in:
Sergey Yagovtsev 2016-06-17 18:49:09 +03:00
parent fda71f5351
commit a9018888f1

View File

@ -127,6 +127,6 @@ int main()
auto end = std::chrono::system_clock::now();
std::cout << "Blocks count: " << blocks_counter << std::endl;
std::cout << "dT = " << std::chrono::duration_cast<std::chrono::microseconds>(end - start).count() << std::endl;
std::cout << "dT = " << std::chrono::duration_cast<std::chrono::microseconds>(end - start).count() << " usec" << std::endl;
return 0;
}