Skip to content

Commit

Permalink
Better code for ConsoleLoggingProvider.
Browse files Browse the repository at this point in the history
  • Loading branch information
cincuranet committed Jan 13, 2023
1 parent 58ea02a commit 1e9b866
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,8 @@ public void Log(FbLogLevel level, string msg, Exception exception = null)

var sb = new StringBuilder();
sb.Append("[");
sb.Append(level.ToString().ToUpper());
sb.Append("]");
sb.Append(level.ToString().ToUpperInvariant());
sb.Append("] ");

sb.AppendLine(msg);

Expand Down

0 comments on commit 1e9b866

Please sign in to comment.