gpt4 book ai didi

asp.net-core-mvc - ASP NET Core 2.0 appsettings.Development.json 不适用于日志记录配置

转载 作者:行者123 更新时间:2023-12-01 18:36:53 27 4
gpt4 key购买 nike

我已经安装了 VS2017 15.3.0 Preview 4 和 .NET Core 2.0 Preview 2 并创建了默认的 Web MVC 应用程序。我有兴趣了解新的日志记录功能如何工作,但在查看“调试”输出窗口时,我无法让 VS 使用 appsettings.Development.json 中定义的日志记录值。

我的理解是 appsettings.Development.json 文件优先于 appsettings.json,但只有后一个文件中的值对调试窗口有影响。这是正确的吗?如果是这样,是否需要额外的设置?

以下是值和结果...

appsettings.json

{
"Logging": {
"IncludeScopes": false,
"Debug": {
"LogLevel": {
"Default": "None"
}
},
"Console": {
"LogLevel": {
"Default": "Information"
}
}
}
}

appsettings.Development.json

{
"Logging": {
"IncludeScopes": false,
"LogLevel": {
"Default": "Information",
"System": "Information",
"Microsoft": "Information"
}
}
}

调试时输出为空(请注意,仅显示 Application Insights 遥测记录,我尚未弄清楚如何删除这些记录)

Empty Output

但是,如果我更改 appsettings.json 中的日志级别,那么我会看到预期的输出...

appsettings.json

{
"Logging": {
"IncludeScopes": false,
"Debug": {
"LogLevel": {
"Default": "Information"
}
},
"Console": {
"LogLevel": {
"Default": "Information"
}
}
}
}

调试时的新输出(请注意,现在包含 Microsoft.AspNetCore.Hosting.Internal.WebHost:Information)

enter image description here

我的 Startup.cs 文件是使用新项目创建的默认 ASP.NET Core 2.0 模板,如下所示。此外,appsettings.json 和 appsettings.Development.json 文件也是由新项目模板自动创建的。

public class Startup
{
public Startup(IConfiguration configuration)
{
Configuration = configuration;
}

public IConfiguration Configuration { get; }

// This method gets called by the runtime. Use this method to add services to the container.
public void ConfigureServices(IServiceCollection services)
{
services.AddDbContext<ApplicationDbContext>(options =>
options.UseSqlServer(Configuration.GetConnectionString("DefaultConnection")));

services.AddIdentity<ApplicationUser, IdentityRole>()
.AddEntityFrameworkStores<ApplicationDbContext>()
.AddDefaultTokenProviders();

// Add application services.
services.AddTransient<IEmailSender, AuthMessageSender>();
services.AddTransient<ISmsSender, AuthMessageSender>();

services.AddMvc();
}

// This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
public void Configure(IApplicationBuilder app, IHostingEnvironment env)
{
if (env.IsDevelopment())
{
app.UseDeveloperExceptionPage();
app.UseBrowserLink();
app.UseDatabaseErrorPage();
}
else
{
app.UseExceptionHandler("/Home/Error");
}

app.UseStaticFiles();

app.UseAuthentication();

app.UseMvc(routes =>
{
routes.MapRoute(
name: "default",
template: "{controller=Home}/{action=Index}/{id?}");
});
}
}

这是我的 Program.cs,它也是 ASP.NET Core 2.0 MVC 模板的默认值。

public class Program
{
public static void Main(string[] args)
{
BuildWebHost(args).Run();
}

public static IWebHost BuildWebHost(string[] args) =>
WebHost.CreateDefaultBuilder(args)
.UseStartup<Startup>()
.Build();
}

解决方案

默认情况下,开发“appsettings.Development.json”配置文件在主“appsettings.json”配置文件之后加载,因此开发配置优先。但是,默认的 appsettings.Development.json 文件不包含用于日志级别设置的调试节点,这看起来很奇怪。这是工作的开发配置。

{
"Logging": {
"IncludeScopes": false,
"LogLevel": {
"Default": "None",
"System": "None",
"Microsoft": "None"
},
"Debug": {
"LogLevel": {
"Default": "Information",
"System": "None",
"Microsoft": "Information"
}
}
}
}

最佳答案

来自 appsettings.json 的每个记录器设置优先于 appsettings.Development.json 中的全局类别默认值.

appsettings.json 以来,您在 Visual Studio 的输出窗口中看不到任何日志。 Debug 的日志级别为记录器。

您需要遵循 .NET Core 2.0(预览版 2)的每个记录器格式,在您的 appsettings.Development.json 中应采用以下格式。覆盖 appsettings.json 中的内容.

{
"Logging": {
"<Logger>": {
"LogLevel": {
"Default": "<LogLevel>"
}
}
}
}

需要明确的是,如果您想要调试记录器的 Trace 日志级别,则 json 配置中应如下所示:

{
"Logging": {
"Debug": {
"LogLevel": {
"Default": "Trace"
}
}

关于asp.net-core-mvc - ASP NET Core 2.0 appsettings.Development.json 不适用于日志记录配置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45214468/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com