10 lines
327 B
C#
10 lines
327 B
C#
|
public static IHostBuilder CreateHostBuilder(string[] args) =>
|
||
|
Host.CreateDefaultBuilder(args)
|
||
|
.ConfigureLogging(logging =>
|
||
|
{
|
||
|
logging.AddFilter("Grpc", LogLevel.Debug);
|
||
|
})
|
||
|
.ConfigureWebHostDefaults(webBuilder =>
|
||
|
{
|
||
|
webBuilder.UseStartup<Startup>();
|
||
|
});
|