class Program
{
static void Main(string[] args)
{
ILoggerFactory loggerFactory = new LoggerFactory().AddConsole();
ILogger logger = loggerFactory.CreateLogger<Program>();
logger.LogInformation(
"This is a test of the emergency broadcast system.");
}
}
当我运行此代码时,我在CreateLogger方法中得到对象引用未设置为对象的实例异常。如果我更改.AddConsole(0到.AddDebug(),它运行没有错误。那么,我缺少什么?我需要在.config文件中添加一些内容吗?