是否有预定义的方法来执行此操作,还是需要定义自己的自定义格式化程序?
答案 0 :(得分:3)
您不会说您使用的是哪个版本的EntLib,但考虑到您的帖子日期,我将假设使用EntLib 5.0。
您感兴趣的格式字符串部分是:
Extended Properties: {dictionary({key} - {value}{newline})}
这是配置文件中找到的“默认”格式化程序模板的一部分,如下所示:
<formatters>
<add type="Microsoft.Practices.EnterpriseLibrary.Logging.Formatters.TextFormatter, Microsoft.Practices.EnterpriseLibrary.Logging, Version=5.0.414.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" template="Timestamp: {timestamp}{newline}
Message: {message}{newline}
Category: {category}{newline}
Priority: {priority}{newline}
EventId: {eventid}{newline}
Severity: {severity}{newline}
Title:{title}{newline}
Machine: {localMachine}{newline}
App Domain: {localAppDomain}{newline}
ProcessId: {localProcessId}{newline}
Process Name: {localProcessName}{newline}
Thread Name: {threadName}{newline}
Win32 ThreadId:{win32ThreadId}{newline}
Extended Properties: {dictionary({key} - {value}{newline})}" name="Text Formatter" />
</formatters>
因此,您可以看到扩展属性是一个字典,在创建日志条目时,Logger将自动迭代该字典。它的目的是提供一种快速而肮脏的方式来转储应用程序可能提供的额外输出。更完整的方法是编写一个自定义格式化程序,该格式化程序专门为每个要添加到扩展属性的对象提供令牌。
要获取此集合中的属性,只需使用
的相应重载LogWriter.Write(..)
进行输入时的方法。其中一些人有
IDictionary(key, string) properties
可用于提供这些值的参数。
至于行号和方法名称,这些只能插入上面提供的词典中。要获得他们的价值,您可以:
private void FillExtraLogInfo(IDictionary<string, object> info)
{
StackFrame stackFrame = new StackFrame(1, true);
info.Add("Method Name", stackFrame.GetMethod().ToString());
info.Add("Line Number" stackFrame.GetFileLineNumber());
}
答案 1 :(得分:-1)
您可以通过在配置文件中配置TextFormatter来获取方法名称。我已经包含了整个格式化程序来为您提供一些上下文,但要找的关键是模板属性中的 {property(MethodName)} 。我不知道如何获得行号。
<loggingConfiguration name="" tracingEnabled="true" defaultCategory="General">
<formatters>
<add type="Microsoft.Practices.EnterpriseLibrary.Logging.Formatters.TextFormatter, Microsoft.Practices.EnterpriseLibrary.Logging, Version=5.0.414.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
template="Timestamp: {timestamp}{newline}
Title: {title}{newline}
Message: {message}{newline}
Category: {category}{newline}
Priority: {priority}{newline}
EventId: {eventid}{newline}
Severity: {severity}{newline}
Machine: {localMachine}{newline}
App Domain: {localAppDomain}{newline}
ProcessId: {localProcessId}{newline}
Process Name: {localProcessName}{newline}
Thread Name: {threadName}{newline}
Win32 ThreadId:{win32ThreadId}{newline}
Extended Properties: {dictionary({key} - {value}{newline})}
Type: {property(TypeName)}{newline}
Method: {property(MethodName)}{newline}
Parameters: {dictionary({key} : {value};)}{newline}
Return Value: {property(ReturnValue)}{newline}
Call Time: {property(CallTime)}{newline}"
name="Detailed Text Formatter" />
</formatters>
</loggingConfiguration>
关于Configuring Formatters的MSDN文章提到了这些特殊令牌,但遗憾的是没有解释如何使用它们。