Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,8 @@ The server event categories include the following sorts of messages:
| SignalR.Transports.LongPollingTransport | LongPolling transport connection, disconnection, messaging, and error events |
| SignalR.Transports.TransportHeartBeat | Transport connection, disconnection, and keepalive events |
| SignalR.ReflectedHubDescriptorProvider | Hub discovery events |
| SignalR.PresistentConnection | Connection handling events |
| SignalR.HubDispatcher | Hub dispatching events |

<a id="server_text"></a>
### Logging server events to text files
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,16 @@
<add name="SignalR-Init" />
</listeners>
</source>
<source name="SignalR.PresistentConnection">
<listeners>
<add name="SignalR-Init" />
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
<add name="SignalR-Init" />
<add name="SignalR-Transports" />

?

</listeners>
</source>
<source name="SignalR.HubDispatcher">
<listeners>
<add name="SignalR-Init" />
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Init seems wrong, not sure what it should be called though

</listeners>
</source>
</sources>
<!-- Sets the trace verbosity level -->
<switches>
Expand Down