Skip to content
This repository was archived by the owner on Dec 13, 2018. It is now read-only.

Commit 613bb01

Browse files
committed
removing unnecessary Convert
1 parent 905dbd8 commit 613bb01

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Microsoft.Framework.Logging.Console/ConsoleLogger.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public void Write(LogLevel logLevel, int eventId, object state, Exception except
4040
structure,
4141
level: 1,
4242
bullet: false);
43-
message = Convert.ToString(builder.ToString(), CultureInfo.InvariantCulture);
43+
message = builder.ToString();
4444
}
4545
else if (formatter != null)
4646
{

0 commit comments

Comments
 (0)