Skip to content

Commit 1e9b866

Browse files
committed
Better code for ConsoleLoggingProvider.
1 parent 58ea02a commit 1e9b866

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/FirebirdSql.Data.FirebirdClient/Logging/ConsoleLoggingProvider.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,8 @@ public void Log(FbLogLevel level, string msg, Exception exception = null)
6060

6161
var sb = new StringBuilder();
6262
sb.Append("[");
63-
sb.Append(level.ToString().ToUpper());
64-
sb.Append("]");
63+
sb.Append(level.ToString().ToUpperInvariant());
64+
sb.Append("] ");
6565

6666
sb.AppendLine(msg);
6767

0 commit comments

Comments
 (0)