43inline void StopWatch::log_msg()
45 int64_t h = getElapsedTime<std::chrono::hours>();
46 int64_t m = getElapsedTime<std::chrono::minutes>() % 60;
47 int64_t s = getElapsedTime<std::chrono::seconds>() % 60;
48 int64_t ms = getElapsedTime<std::chrono::milliseconds>() % 1000;
52 "[runtime h:m:s.ms] {}: {:02d}:{:02d}:{:02d}.{:03d}",