如何配置 Enterprise Library 格式化程序以不删除“新行”从记录的消息中?
如何配置格式化程序不从记录的消息中删除“新行”?
logAttribute.Message="@p1='aa'\n@p2='bb'"
我想在日志中找到:
@p1='aa'
@p2='bb'
不是
@p1='aa'@p2='bb'
How to configure formatters not to remove "new lines" from the logged message?
logAttribute.Message="@p1='aa'\n@p2='bb'"
I want to find in the log:
@p1='aa'
@p2='bb'
Not
@p1='aa'@p2='bb'
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用文字字符串并强制实际中断。不优雅,但可以完成工作。
或者,编写您的自定义格式化程序。
Use a literal string and force the actual break. Not elegant, but will do the job.
Alternatively, write your custom formatter.