protected override void ConfigureAppConfiguration(IInMemoryConfigurationBuilderRoot builder)
 {
     builder
     .IncludeLoggingScopes(true)
     .SetDefaultLogLevel(LogLevel.Trace)
     .SetLogLevel("Microsoft", LogLevel.Debug)
     .SetLogLevel("Microsoft.AspNetCore.Hosting", LogLevel.Debug)
     .SetLogLevel("Microsoft.AspNetCore.Hosting.Internal", LogLevel.Information)
     .SetLogLevel("Solid", LogLevel.Trace)
     .SetLogLevel("Microsoft.AspNetCore.DataProtection", LogLevel.None)
     ;
 }
Пример #2
0
 protected virtual void ConfigureAppConfiguration(string name, IInMemoryConfigurationBuilderRoot builder)
 {
 }