From 628309df4108b4a4fac6edf589aab70a673851ac Mon Sep 17 00:00:00 2001 From: sta Date: Wed, 22 Jan 2014 14:02:00 +0900 Subject: [PATCH] Fix a few --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index afa267a1..ac702395 100644 --- a/README.md +++ b/README.md @@ -467,9 +467,9 @@ wssv.AuthenticationSchemes = AuthenticationSchemes.Digest; 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 ws.Log.Level = LogLevel.DEBUG;