作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我似乎无法从我的 SignalR 中心获取跟踪信息。我正在使用 MVC4 项目,并且在我的 MVC Controller 中正确记录了跟踪信息,但是当我在我的 SignalR 集线器内使用跟踪时,我什么也没得到。
例如,我在 Controller 的第一行看到消息:
System.Diagnostics.Trace.TraceInformation("Test Controller");
但我在我的中心内的第一行没有看到这条消息:
System.Diagnostics.Trace.TraceInformation("Test Hub");
我的 web.config 在 <system.web>
下有以下行:
<trace enabled="true"
writeToDiagnosticsTrace="true"
localOnly="false"
mostRecent="true"
pageOutput="false" />
我的系统诊断如下:
<system.diagnostics>
<sources>
<source name="Example Source" switchName="sourceSwitch" switchType="System.Diagnostics.SourceSwitch">
<listeners>
<add name="GlimpseListener" />
</listeners>
</source>
</sources>
<switches>
<add name="sourceSwitch" value="All" />
</switches>
<sharedListeners>
<add name="GlimpseListener" type="Glimpse.Core.TraceListener, Glimpse.Core" />
</sharedListeners>
<trace>
<listeners>
<add name="WebPageTraceListener" type="System.Web.WebPageTraceListener, System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"/>
</listeners>
</trace>
</system.diagnostics>
如前所述,来 self 的 Controller 的跟踪消息在 Trace.axd 页面和 Glimpse 的跟踪选项卡中都显示良好。
欢迎提出任何想法,我一直在努力解决这个问题。
最佳答案
也许这会对您有所帮助 https://github.com/SignalR/SignalR/wiki/Tracing-on-the-server-side
什么是相关的:
<source name="Microsoft.Owin.Host.SystemWeb" switchValue="All">
<listeners>
<add name="traces" />
</listeners>
</source>
<source name="SignalR.Connection">
<listeners>
<add name="traces" />
</listeners>
</source>
<sharedListeners>
<add name="traces" type="System.Diagnostics.TextWriterTraceListener" initializeData="server_traces.txt" />
</sharedListeners>
使用文本监听器将按预期工作,因为它可以“跑出”“正常”的 asp.net 管道。
关于asp.net-mvc - 看不到来 self 的 SignalR 集线器的跟踪输出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18669175/
我遇到过 WinAPI 的奇怪行为,在我看来是这样。在我的程序中,我为窗口设置了一个计时器 ::SetTimer(window_handle, timer_id, 10, NULL); 并在我的窗口过
我是一名优秀的程序员,十分优秀!