I'm writing multithreading app on C++ and I need logging with timestamps to workout data races synchronization etc. This means that I need to log time with milliseconds at least. I looked all over the internet to find the way just to print std::chrono::high_resolution_clock::time_point
in a way like 14:08:12.132
I know that it should be trivial. I will appreciate for the working solution.