103 timestamp <<
sec <<
"." << std::setfill(
'0') << std::setw(6) << (
nsec / 1000);
112 std::time_t cur_time = std::chrono::system_clock::to_time_t(
now);
113 std::chrono::milliseconds milliseonds = std::chrono::duration_cast<std::chrono::milliseconds>(
now.time_since_epoch()) % 1000;
114 struct tm local_time;
116 std::stringstream time_stream;
117 time_stream << std::put_time(&local_time,
"%F %T") <<
"." << std::setfill(
'0') << std::setw(3) << milliseonds.count();
118 return time_stream.str();