电锯无法在本地主机上工作
我使用 Log2Console 查看远程日志。我的记录器是 NLog。我的配置如下所示:
<target name="log_main" xsi:type="Chainsaw"
address="udp://localhost:12345"/>
当我在一台计算机上运行日志生成器和 Log2Console 时,不显示任何日志。当我在不同的机器上运行它们时(当然指定相应的地址),一切正常。
我尝试将 127.0.0.1
替换为 127.0.0.2
或 localhost
。我还尝试在 Log2Console 中启用/禁用 IPv6,但仍然不起作用。
我的系统是Win7 x64。
I use Log2Console to view remote logs. My logger is NLog. My config looks like this:
<target name="log_main" xsi:type="Chainsaw"
address="udp://localhost:12345"/>
When I run both logs producer and Log2Console on a single machine, no logs are shown. When I run them on different machines (specifying corresponding address, of course), everything works fine.
I've tried replacing 127.0.0.1
with 127.0.0.2
or localhost
. Also I've tried enabling/disabling IPv6 in Log2Console, but it still doesn't work.
My system is Win7 x64.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我在 UDP 方面也遇到了同样的问题。当我尝试 TCP 时,出现“无效的流标头:3C6C6F67”异常。没有找到解决方案,但我已切换到 Log2Console (http://log2console.codeplex.com/ )。您可以使用相同的
xsi:type="Chainsaw"
目标。它更简单,但对我来说足够强大。它还可以与 NLog 无缝配合。
I had same problem whit UDP. When I've tried TCP I got "invalid stream header: 3C6C6F67" exception. Didn't find solution, but I've swiched to Log2Console (http://log2console.codeplex.com/). You can use same
xsi:type="Chainsaw"
target.It's simpler but powerfull enough for me. Also it works whit NLog seamlessly.
我有同样的问题。 TCP 或 UDP 并不重要,但当我指定本地计算机的完整 IP 地址时,它就起作用了。
I had same problem. TCP or UDP didn't matter, but when I specified the full IP address for the local machine, it worked.