使用 Instrumentation.Logging 的 .NET 单行日志记录(ala Trace.Write/WriteLine)

发布于 2024-07-22 05:05:45 字数 686 浏览 4 评论 0原文

我的问题是是否有可能获得 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

倥絔 2024-07-29 05:05:45

您是否尝试过在需要时在日志记录语句中附加 Environment.NewLine

Have you tried appending Environment.NewLine in your logging statements when needed?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文