You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 20, 2018. It is now read-only.
I have an Azure website that is running on Asp.Net Core 1.1. The site is using the Extension "UseAzureAppService" (see below) to set up logging. On the web application I have been able to turn on the "Application Logging(Blob)" under the Diagnostic logs and have set the level to warning. The only problem is the log file is getting flooded by Information messages. Is this an error in the code or something I haven't set up correctly?
public static void Main(string[] args)
{
var host = new WebHostBuilder()
.UseKestrel()
.UseContentRoot(Directory.GetCurrentDirectory())
.UseAzureAppServices()
.UseStartup<Startup>()
.Build();
host.Run();
}
The text was updated successfully, but these errors were encountered:
This patch bug is approved. Please use the normal code review process w/ a PR and make sure the fix is in the correct branch, then close the bug and mark it as done.
I have an Azure website that is running on Asp.Net Core 1.1. The site is using the Extension "UseAzureAppService" (see below) to set up logging. On the web application I have been able to turn on the "Application Logging(Blob)" under the Diagnostic logs and have set the level to warning. The only problem is the log file is getting flooded by Information messages. Is this an error in the code or something I haven't set up correctly?
The text was updated successfully, but these errors were encountered: