ILogger log.Error方法无法在AppInsights中记录Dictionary <string,string>或自定义类

时间:2018-01-16 07:22:03

标签: c# logging azure-application-insights

loggerFactory.AddApplicationInsights(app.ApplicationServices);

try
{
    throw new Exception("This is a test exception for app insights.");
}
catch (Exception ex)
{
    logger.LogError(ex, "Exception message",new Dictionary<string, string>() { {"Controller","Error" } });
    throw;
}

我想用这个args记录错误,其中args是字典。我记录了错误,但是args没有在app洞察中尝试过。

应用程序洞察允许发送自定义对象,但是记录器有关于将其转发到AppInsights的问题。只是不转发。有什么想法吗?

0 个答案:

没有答案