我正在使用的ConfigureServices
方法:
var loggerFactory = new LoggerFactory();
loggerFactory.AddDebug();
但是,使用LogDebug()
无法输出到调试控制台。
答案 0 :(得分:0)
而不是依赖于AddDebug()...使用AddConsole()指定最小日志级别,并按预期将调试级别信息输出到控制台:
loggerFactory.AddConsole(LogLevel.Debug);
这是有效的,因为AddConsole(),AddDebug()等方法只指定 where 来记录信息。我们将更深入地讨论这个问题here。