Skip to content

Commit

Permalink
using a valid format string
Browse files Browse the repository at this point in the history
  • Loading branch information
ctacke committed Jul 4, 2024
1 parent 083fdee commit e62a351
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Meadow.Logging/lib/Logger.cs
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ private void Log(LogLevel level, string message, string? messageGroup)
{
if (now != null)
{
message = $"[+{now:HH\\:mm\\:ss\\.FFF}] {message}";
message = $"[+{now:hh\\:mm\\:ss\\.FFF}] {message}";
}

p.Log(level, message, messageGroup);
Expand Down

0 comments on commit e62a351

Please sign in to comment.