Fix a few

This commit is contained in:
sta 2014-01-22 14:02:00 +09:00
parent 809472495b
commit 628309df41

View File

@ -467,9 +467,9 @@ wssv.AuthenticationSchemes = AuthenticationSchemes.Digest;
The `WebSocket` class includes own logging function. The `WebSocket` class includes own logging function.
You can access the logging function with the `WebSocket.Log` (its type is `WebSocketSharp.Logger`) property. 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 is `WebSocketSharp.LogLevel.ERROR`), you should set any of `LogLevel` values to the `WebSocket.Log.Level` property. 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`.
```cs ```cs
ws.Log.Level = LogLevel.DEBUG; ws.Log.Level = LogLevel.DEBUG;