We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent df5b56b commit 50ab886Copy full SHA for 50ab886
packages/logging/source/common/String.cpp
@@ -279,7 +279,7 @@ namespace string {
279
std::string get_local_time_string(const int32_t unixtime, std::string_view format) {
280
struct std::tm tminfo = {};
281
282
- convert_to_local_tm_from_utc_time(unixtime, &tminfo);
+ convert_to_local_tm_from_utc_time(unixtime, &tminfo, false);
283
284
std::ostringstream out;
285
out << std::put_time(&tminfo, format.data());
0 commit comments