Skip to content
Snippets Groups Projects
Commit 2df97cd8 authored by Amin Yazdi's avatar Amin Yazdi
Browse files

Fix: Correct the date format to 24h (coscine/issues#2097)

parent d09ab9d4
No related branches found
No related tags found
1 merge request!25Fix: Correct the date format to 24h (coscine/issues#2097)
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
namespace Coscine.Logging namespace Coscine.Logging
...@@ -478,7 +478,7 @@ namespace Coscine.Logging ...@@ -478,7 +478,7 @@ namespace Coscine.Logging
private static string FormatTimestamp(DateTime timestamp) private static string FormatTimestamp(DateTime timestamp)
{ {
string formattedDateTime = string.Format("{0:yyyy-MM-dd hh:mm:ss.fff}", timestamp); string formattedDateTime = string.Format("{0:yyyy-MM-dd HH:mm:ss.fff}", timestamp);
return formattedDateTime; return formattedDateTime;
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment