在Orc.Logviewer中选择Type name

时间:2017-10-22 12:23:06

标签: c# catel

记录器控件使用Type作为参数,可用于过滤日志,即

private static ILog _logger = LogManager.GetLogger(typeof(string));

这反过来会添加System.String作为选项,即(IoHelperMethods将在哪里)

enter image description here

我希望能够在其中放置自定义字符串,因为我可以更具描述性,但遗憾的是,您无法执行以下操作:

private static ILog _logger = LogManager.GetLogger("Example Error Filter Type");

1 个答案:

答案 0 :(得分:0)

我认为你可以在Catel 5中将类型添加为字符串:

https://github.com/Catel/Catel/blob/develop/src/Catel.Core/Catel.Core.Shared/Logging/Log.cs#L38

LogViewer是不是正确地选择了它?如果没有,请在GitHub repro中创建一张票,它将被修复。