We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b57151d commit 432f6f9Copy full SHA for 432f6f9
Program.cs
@@ -19,6 +19,10 @@ public static void Main(string[] args)
19
20
public static IWebHostBuilder CreateWebHostBuilder(string[] args) =>
21
WebHost.CreateDefaultBuilder(args)
22
- .UseStartup<Startup>();
+ .UseStartup<Startup>()
23
+ .ConfigureLogging((hostingContext, logging) =>
24
+ {
25
+ logging.AddAzureWebAppDiagnostics();
26
+ });
27
}
28
appsettings.json
@@ -1,7 +1,7 @@
1
{
2
"Logging": {
3
"LogLevel": {
4
- "Default": "Warning"
+ "Default": "Information"
5
6
},
7
"AllowedHosts": "*",
0 commit comments