Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

27 linhas
765B

  1. using Serilog.Configuration;
  2. using Serilog.Core;
  3. using Serilog.Events;
  4. using Serilog;
  5. namespace TelpoKafkaConsole.WebApi.Configs
  6. {
  7. public class ThreadInfoEnricher : ILogEventEnricher
  8. {
  9. public void Enrich(LogEvent logEvent, ILogEventPropertyFactory propertyFactory)
  10. {
  11. logEvent.AddPropertyIfAbsent(propertyFactory.CreateProperty("ThreadId", Thread.CurrentThread.ManagedThreadId));
  12. }
  13. }
  14. public static class EnricherExtensions
  15. {
  16. public static LoggerConfiguration WithThreadInfo(this LoggerEnrichmentConfiguration enrich)
  17. {
  18. if (enrich == null)
  19. throw new ArgumentNullException(nameof(enrich));
  20. return enrich.With<ThreadInfoEnricher>();
  21. }
  22. }
  23. }