Add time zone abbreviation to all time point streaming

This commit is contained in:
Howard Hinnant
2020-02-03 12:33:29 -05:00
committed by Manoj doshi
parent 79896af275
commit ce589225dd

View File

@@ -59,7 +59,7 @@ template <class Duration>
std::string
to_string(date::sys_time<Duration> tp)
{
return date::format("%Y-%b-%d %T", tp);
return date::format("%Y-%b-%d %T %Z", tp);
}
inline