1

这可能是 如何设置 Steeltoe 动态记录与 3rd 方记录器作为 Serilog 一起工作的重复?. 我想利用 Steeltoe 动态日志配置(将帮助我在不重新部署的情况下动态调整日志级别)并且想让我的日志语句更有条理。所以我决定看看 Serilog。这是我的代码

public class Program
    {

        /// <summary>
        /// Application entry point.
        /// </summary>
        /// <param name="args">arguments.</param>
        public static void Main(string[] args)
        {
            BuildWebHost(args).Run();
        }

        /// <summary>
        /// 
        /// </summary>
        /// <param name="args"></param>
        /// <returns></returns>
        public static IWebHost BuildWebHost(string[] args) =>
                    WebHost.CreateDefaultBuilder(args)
                        .UseStartup<Startup>()
            .ConfigureAppConfiguration((hostContext, config) =>
            {
                config.AddCloudFoundry();
            })
            .ConfigureLogging((context, builder) =>
            {
                // We need to clear providers which are added by CreateDefaultBuilder(). 
                // Please refer https://github.com/aspnet/Logging/issues/648. Otherwise log entries will be duplicated 
                // since AddDynamicConsole again add console logger
                builder.ClearProviders();
                if (context.HostingEnvironment.IsDevelopment())
                {
                    builder.AddDebug();
                }
                builder.AddDynamicConsole();
            })
            .UseSerilog((hostingContext, loggerConfiguration) => loggerConfiguration
                 .ReadFrom.Configuration(hostingContext.Configuration)
                 .Enrich.FromLogContext()
                 .WriteTo.Console(outputTemplate:
                 "[{Level:u3}] [{Properties}] {Message}{NewLine}{Exception}")
            .WriteTo.Trace())
            .Build();
    } 

但这并没有按预期工作。在 PCF 应用程序管理器中,除了“默认”之外,我看不到任何日志记录提供程序。如果我取消注释

使用 Serilog()

他们也回来了。顺便说一句,我不想​​将自己限制在 Serilog 中,这是否可以使用 NLog(听说它也支持结构化日志记录)?或者任何其他将结构化日志记录和动态日志记录配置结合起来的想法都是最受欢迎的

4

1 回答 1

1

Steeltoe 现在通过开发分支 MyGet 提要Steeltoe.Extensions.Logging.SerilogDynamicLogger提供对 Serilog 的初步支持。源代码和单元测试在这个存储库中,我们欢迎您的反馈!

使用新的 NuGet 包,您应该能够做到这一点

new WebHostBuilder()
  .ConfigureLogging((builderContext, loggingBuilder) =>
  {
    loggingBuilder.AddConfiguration(builderContext.Configuration.GetSection("Logging"));

    // Add Steeltoe Dynamic Serilog provider
    loggingBuilder.AddSerilogDynamicConsole();
  })

然后像使用预先存在的动态记录器一样使用您的方式。

于 2019-04-05T21:19:31.720 回答