I have a project using .NET Framework ASP.NET Core 2.0, and want to implement logging to windows event log, like i read here
Add log providers
public class Program { public static void Main(string[] args) { BuildWebHost(args).Run(); } public static IWebHost BuildWebHost(string[] args) => WebHost.CreateDefaultBuilder(args) .ConfigureLogging((hostingContext, logging) => { logging.AddConfiguration(hostingContext.Configuration.GetSection("Logging")); logging.AddEventSourceLogger(); logging.AddConsole(); }) .UseStartup<Startup>() .Build(); } Controller
[Route("api/[controller]")] public class ShortCodeController : Controller { private readonly ILogger _logger; public ShortCodeController(ILogger<ShortCodeController> logger) { _logger = logger; _logger.LogInformation("INIT"); } [HttpGet("{letters}/{digits}/{length}")] public string Get(bool letters, bool digits, int length) { _logger.LogError("TEST"); return "value"; } } And it works for console, I see my log messages. But i can't find that messages in event log using event viewer. Why?
logging.AddEventSourceLogger()rather thanlogging.AddEventLog()(as suggested in learn.microsoft.com/en-us/aspnet/core/fundamentals/logging/…)?.ConfigureLogging((hostingContext, logging) =>is.ConfigureLogging((logging) =>in dotnet core 3.1 learn.microsoft.com/en-us/aspnet/core/fundamentals/logging/…