在使用 Microsoft Enterprise Library 5.0 时,我们如何让 Logging Block 将数据输入到事件日志条目的任务类别字段中,而无需专门在代码中创建事件日志条目?
我的企业库类别显示得很好,但这不是我们过滤 Windows 事件日志的内容,因此任务类别条目会很好。
但我也想在代码中使用通用日志调用,而不是专门实例化 Windows 日志条目,即我想保留:
// Create a LogWriter object.
LogWriter writer = EnterpriseLibraryContainer.Current.GetInstance<LogWriter>();
// Use the LogWriter object.
writer.Write("My message", "kicks");
但不知何故,任务类别字段也完成了。