Fix a few

This commit is contained in:
sta 2014-01-22 14:11:05 +09:00
parent 628309df41
commit 5bb4912742

View File

@ -465,11 +465,11 @@ wssv.AuthenticationSchemes = AuthenticationSchemes.Digest;
### Logging ### ### Logging ###
The `WebSocket` class includes own logging function. The `WebSocket` class includes the own logging function.
You can access the logging function with the `WebSocket.Log` property. (Its type is `WebSocketSharp.Logger`.) You can access the logging function with the `WebSocket.Log` property. (Its type is `WebSocketSharp.Logger`.)
If you want to change the current logging level (the default logging level is `WebSocketSharp.LogLevel.ERROR`), you should set any of `LogLevel` values to the `WebSocket.Log.Level`. If you want to change the current logging level (the default logging level is `WebSocketSharp.LogLevel.ERROR`), you should set any of the `LogLevel` values to the `WebSocket.Log.Level`.
```cs ```cs
ws.Log.Level = LogLevel.DEBUG; ws.Log.Level = LogLevel.DEBUG;