我需要可以在Enterprise Library Loggin应用程序块文本格式化程序配置中使用的文本格式化程序模板标记列表。
答案 0 :(得分:1)
我找到了可用于格式化日志条目的令牌列表,这里是:
{message}
{category}
{priority}
{eventid}
{severity}
{title}
{timestamp}
{timestamp()}
{timestamp(local)}
{timestamp(FixedFormatUSDate)}
{timestamp(FixedFormatISOInternationalDate)}
{timestamp(FixedFormatTime)}
{machine}
{localMachine}
{appDomain}
{localAppDomain}
{processId}
{localProcessId}
{processName}
{localProcessName}
{threadName}
{win32ThreadId}
{dictionary()}
{keyvalue()}
{newline}
{tab}
{property()}
字典示例:{字典({key} - {value} {newline})}
列表是从Logging Application Block源代码中提取的,可以从here
下载