Talk about Logging in ASP.NET Core?

Technology CommunityCategory: ASP.NETTalk about Logging in ASP.NET Core?
VietMX Staff asked 3 years ago

Logging is built-in and you get access to structured logs from the ASP.NET Core host itself to your application. With tools like Serilog, you can extend your logging easily and save your logs to file, Azure, Amazon or any other output provider. You can configure verbosity and log levels via configuration (appsettings.json by default), and you can configure log levels by different categories.