Linux 的 DebugView 替代方案(单声道相关)
在 Windows 下,我们使用 DebugView 来监视 .NET 的跟踪和调试输出应用。由于我们目前正在将应用程序移植到 Linux 上的 mono,我想知道是否有类似的工具。
我们目前正在使用 log4net 和 TraceAppender,但基本上任何适用于 log4net 的解决方案都可以。
Under Windows we use DebugView to monitor trace and debug outputs of our .NET application. Since we are currently porting the application to mono on Linux I wonder if there's a similar tool.
We're currently using log4net with the TraceAppender, but basically any solution that works with log4net would do.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
也许 log2console 适合您。该软件可以监听 UDP Appender 的输出(使用
XmlLayout
模式)。该应用程序是用 .Net 编写的,因此将其移植到 Mono 可能并不太难。或者,您可以使用 Apache Chainsaw (使用
XmlLayoutSchemaLog4j
格式那种情况)。Maybe log2console works for you. This software can listen to the output of a UDP Appender (with
XmlLayout
pattern). The application is written in .Net so maybe it is not too hard to port it to mono.Alternatively you could use Apache Chainsaw (use the
XmlLayoutSchemaLog4j
format in that case).