https://docs.microsoft.com/en-us/aspnet/core/fundamentals/logging/?view=aspnetcore-2.1#log-filtering Currently, Serilog completely ignores Microsoft log filtering. For example, the config below is respected using Microsoft's console logger but Ignored using serilog. ``` "Logging": { "LogLevel": { "Microsoft": "Warning", "System": "Warning", "Default": "Warning" } }, ```