Enterprise Library 3.1 日志格式化程序模板 - 包括 URL 请求
我们有一个使用 Ektron v8.0 构建的自定义 Web 应用程序,该应用程序使用 EL 3.1,并且日志记录配置中的格式模板配置如下:
<add
name="Text Formatter"
type="Microsoft.Practices.EnterpriseLibrary.Logging.Formatters.TextFormatter, Microsoft.Practices.EnterpriseLibrary.Logging"
template="Timestamp: {timestamp}
Message: {message}
Category: {category}
Priority: {priority}
EventId: {eventid}
Severity: {severity}
Title:{title}
Extended Properties: {dictionary({key} - {value}
)}"
/>
是否有请求 URL 的模板项?如果没有带有查询字符串参数的请求 url,则很难调试错误。
We have a custom web app built using Ektron v8.0 which uses EL 3.1 and the format template in the logging config is configured as such:
<add
name="Text Formatter"
type="Microsoft.Practices.EnterpriseLibrary.Logging.Formatters.TextFormatter, Microsoft.Practices.EnterpriseLibrary.Logging"
template="Timestamp: {timestamp}
Message: {message}
Category: {category}
Priority: {priority}
EventId: {eventid}
Severity: {severity}
Title:{title}
Extended Properties: {dictionary({key} - {value}
)}"
/>
Is there a template item for Request URL? Without the request url with querystring parameters, it's difficult to debug errors.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
没有专门针对请求 URL 的模板项。您可以自己将请求 URL 添加到扩展属性,以便记录信息:
由于格式化程序正在记录所有字典键/值,因此您的 RequestUrl 将显示在日志中。
另一种方法是创建您自己的
IExtraInformationProvider
来填充您感兴趣的特定 Web 信息。除了使用企业库界面之外,这实际上是相同的事情。There is no template item specifically for the request URL. You can add the request URL to the extended properties yourself so that the information is logged:
Since the formatter is logging all dictionary key/values your RequestUrl will show up in the log.
An alternative approach would be to create your own
IExtraInformationProvider
to populate the specific web information you are interested in. It's really the same thing except using an Enterprise Library interface.