mirror of
https://github.com/collinbarrett/FilterLists.git
synced 2026-03-11 09:04:27 +00:00
refactor(logging): ♻ sync log levels with API template default
This commit is contained in:
parent
8554b5746b
commit
7e3e9bb8cf
1 changed files with 3 additions and 3 deletions
|
|
@ -7,9 +7,9 @@ internal static class ConfigurationBuilder
|
|||
{
|
||||
public static readonly LoggerConfiguration BaseLoggerConfiguration =
|
||||
new LoggerConfiguration()
|
||||
.MinimumLevel.Debug()
|
||||
.MinimumLevel.Override("Microsoft", LogEventLevel.Information)
|
||||
.MinimumLevel.Override("Microsoft.AspNetCore", LogEventLevel.Warning)
|
||||
.MinimumLevel.Information()
|
||||
.MinimumLevel.Override("Microsoft", LogEventLevel.Warning)
|
||||
.MinimumLevel.Override("Microsoft.Hosting.Lifetime", LogEventLevel.Information)
|
||||
.Enrich.FromLogContext()
|
||||
.WriteTo.Console();
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue