Change format syntax to a simple custom %f/%#f scheme

This commit is contained in:
Vladimir Panteleev
2017-12-10 04:44:13 +00:00
parent fd8a36d3ea
commit 15b1f8d8fa
4 changed files with 18 additions and 24 deletions
+1 -1
View File
@@ -157,7 +157,7 @@ class CListSockets : public CModule {
timeval tv;
tv.tv_sec = iStartTime / 1000;
tv.tv_usec = iStartTime % 1000 * 1000;
return CUtils::FormatTime(tv, "%Y-%m-%d %H:%M:%S.%L",
return CUtils::FormatTime(tv, "%Y-%m-%d %H:%M:%S.%f",
GetUser()->GetTimezone());
}