Skip to content
This repository was archived by the owner on Sep 27, 2020. It is now read-only.

Commit 8825d7a

Browse files
authored
Update UltzLogger.cs
1 parent 65867d0 commit 8825d7a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Ultz.Logger/UltzLogger.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ Func<TState, Exception, string> formatter
2929
.Replace("MI", DateTime.Now.ToString("mm"))
3030
.Replace("SS", DateTime.Now.ToString("ss"))
3131
.Replace("EVENT_ID", $"[{eventId.Name}/{eventId.Id}]")
32-
.Replace("MSG", formatter(state, exception))
33-
.Replace("LVL", GetLevel(logLevel));
32+
.Replace("LVL", GetLevel(logLevel))
33+
.Replace("MSG", formatter(state, exception));
3434
Writers.ForEach(x => x.WriteLine(msg));
3535
}
3636

0 commit comments

Comments
 (0)