我正在使用Enterprise Library 5.0,我的任务是将信息记录到数据库。为此,我使用了Enterprise Library Logging Application Block和Database Trace Listener。
现在,几天后我发现需要更多信息才能登录Logging.LOG表。它们是:User_ID,Session_ID等。
根据业务需求,我不能使用LogEntry类的ExtendedProperty属性,并将此信息存储在XML fomrat中的日志表的FormattedMessage列中。我想在记录数据库的日志表中使用名称为“User_ID”和“Session_ID”的正确列。
问题是:如何在日志表中推送自定义信息?
为此我找到了一个名为“CustomTraceListener”的东西,我们需要覆盖两个方法,即Write(string Message)& WriteLog(字符串消息)
如何使用此CustomeTraceListener将客户消息推送到日志表?
Write方法接受string类型的单个参数,意味着我将获得一个连接的字符串,我需要将其分解为不同的信息并使用我自己的代码推送到数据库中?
有人可以向我发送一份CustomeTraceListener的实例示例 - >>数据库
请帮帮我。
谢谢,
苏拉杰
答案 0 :(得分:1)
按照此操作创建自定义跟踪侦听器:http://msdn.microsoft.com/en-us/library/ff647545.aspx
然后您可以使用Fluent配置执行此类操作(代码无法正常工作,但会给您一个想法):
var builder = new ConfigurationSourceBuilder();
var serviceConfig = new NameValueCollection();
serviceConfig.Add("Key", "data");
builder.ConfigureLogging()
.LogToCategoryNamed("General")
.WithOptions.SetAsDefaultCategory()
.SendTo.Custom<ServiceTraceListener>("ServiceTraceListener", serviceConfig)
.FormatWith(new FormatterBuilder()
.TextFormatterNamed("Text Formatter")
.UsingTemplate("Timestamp: {timestamp}...{newline})}"));
var configSource = new DictionaryConfigurationSource();
configSource.Add(LoggingSettings.SectionName, builder.Get(LoggingSettings.SectionName));
var cont = EnterpriseLibraryContainer.CreateDefaultContainer(configSource);
return cont.GetInstance<LogWriter>();
(代码来自:Enterprise Library 5.0 Logging using CustomTraceListener and ConfigurationSourceBuilder)
以下是您可以在 .UsingTemplate方法中使用的数据的概述: http://msdn.microsoft.com/en-us/library/microsoft.practices.enterpriselibrary.logging.configuration.textformatterdata.template(v=PandP.50).aspx
然后在您的CustomTraceListener TraceData覆盖方法中使用此模板(如果您遵循我在此处链接的MSDN演练)。
另见:http://msdn.microsoft.com/en-us/library/ff664363(v=PandP.50).aspx 额外格式:http://msdn.microsoft.com/en-us/library/ff664562(v=PandP.50).aspx