ASP NET Core 2.0 appsettings.Development.json 无法使用日志记录配置

ASP NET Core 2.0 appsettings.Development.json not working with logging configuration

我已经安装了 VS2017 15.3.0 预览版 4 和 .NET Core 2.0 预览版 2,并创建了一个默认的 Web MVC 应用程序。我有兴趣了解新的日志记录功能是如何工作的,但是在查看调试输出 window.

时,我无法让 VS 使用 appsettings.Development.json 中定义的日志记录值

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

这是值和结果...

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 Telemetry 记录,我还没有弄清楚如何删除)

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

appsettings.json

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

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

我的 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();
}

解决方案

默认情况下,dev "appsettings.Development.json" 配置文件在主 "appsettings.json" 配置文件之后加载,因此 dev 配置优先。但是,默认的 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 中的全局类别默认设置。

您没有看到来自 Visual Studio 的输出 window 的任何日志,因为您的 appsettings.json 的日志级别为 None 用于 Debug 记录器。

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

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

明确地说,如果您想要调试记录器的 Trace 日志级别,这就是您的 json 配置中的样子:

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