We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dcd65b0 commit 25d6851Copy full SHA for 25d6851
src/Grpc/test/testassets/InteropClient/InteropClient.cs
@@ -96,7 +96,7 @@ private InteropClient(ClientOptions options)
96
services.AddLogging(configure =>
97
{
98
configure.SetMinimumLevel(LogLevel.Trace);
99
- configure.AddSimpleConsole(loggerOptions =>
+ configure.AddConsole(loggerOptions =>
100
101
loggerOptions.IncludeScopes = true;
102
});
src/Grpc/test/testassets/InteropWebsite/Program.cs
@@ -37,7 +37,7 @@ public static IHostBuilder CreateHostBuilder(string[] args) =>
37
Host.CreateDefaultBuilder(args)
38
.ConfigureLogging(builder =>
39
40
- builder.AddSimpleConsole();
+ builder.AddConsole();
41
builder.SetMinimumLevel(LogLevel.Trace);
42
})
43
.ConfigureWebHostDefaults(webBuilder =>
0 commit comments