使用 Instrumentation.Logging 的 .NET 单行日志记录(ala Trace.Write/WriteLine)
我的问题是是否有可能获得 Trace.Write 和 Trace.WriteLine 方法的行/多行(非常不确定正确的术语)行为,但使用 .NET 2.0 中的 Microsoft Instrumentation Logging 框架。
所需的输出
Hello World!
Oh Hai.
我当前拥有的内容
Trace.Write("Hello ");
Trace.WriteLine("World!");
Trace.Write("Oh Hai.");
我更喜欢使用检测来记录日志,而不是使用 Debug.Trace 写入日志文件。
编辑:通过仪器日志记录,我的意思是在 App.config 中使用“loggingConfiguration”块并使用 Microsoft.Practices.EnterpriseLibrary.Logging.Logger.Write(LogEntry logEntry); 写入日志条目
例如,Microsoft.Practices.EnterpriseLibrary.Logging.Configuration.FlatFileTraceListenerData、Microsoft.Practices.EnterpriseLibrary.Logging、版本=2.0.0.0。
塔, 已知颜色
My question is whether it is possible to get line/multiline (very unsure of correct term for this) behaviour of the Trace.Write and Trace.WriteLine methods but using the Microsoft Instrumentation Logging framework in .NET 2.0.
Desired Output
Hello World!
Oh Hai.
What I Currently Have
Trace.Write("Hello ");
Trace.WriteLine("World!");
Trace.Write("Oh Hai.");
I would prefer to use instrumentation to log rather than writing to a log file using Debug.Trace.
EDIT: By Instrumentation Logging I mean using a 'loggingConfiguration' block in my App.config and writing Log Entries using using Microsoft.Practices.EnterpriseLibrary.Logging.Logger.Write(LogEntry logEntry);
Microsoft.Practices.EnterpriseLibrary.Logging.Configuration.FlatFileTraceListenerData, Microsoft.Practices.EnterpriseLibrary.Logging, Version=2.0.0.0 for example.
Ta,
KnownColor
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否尝试过在需要时在日志记录语句中附加 Environment.NewLine ?
Have you tried appending Environment.NewLine in your logging statements when needed?