From b9ec79afcce25b16d8bd81ddd0ad818af935c79a Mon Sep 17 00:00:00 2001
From: Ming Deng <mindeng@ebay.com>
Date: Wed, 25 Sep 2019 22:29:05 +0800
Subject: [PATCH] Add remark

---
 filter/impl/access_log_filter.go | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/filter/impl/access_log_filter.go b/filter/impl/access_log_filter.go
index 2dadaaf4d..75c058293 100644
--- a/filter/impl/access_log_filter.go
+++ b/filter/impl/access_log_filter.go
@@ -53,15 +53,15 @@ func init() {
  * you should config "accesslog" in service's config to tell the filter where store the access log.
  * for example:
  * "UserProvider":
-    registry: "hangzhouzk"
-    protocol : "dubbo"
-    interface : "com.ikurento.user.UserProvider"
-    ... # other configuration
-    accesslog: "/your/path/to/store/the/log/", # it should be the path of file.
-
+ *   registry: "hangzhouzk"
+ *   protocol : "dubbo"
+ *   interface : "com.ikurento.user.UserProvider"
+ *   ... # other configuration
+ *   accesslog: "/your/path/to/store/the/log/", # it should be the path of file.
+ *
  * the value of "accesslog" can be "true" or "default" too.
  * If the value is one of them, the access log will be record in log file which defined in log.yml
-*/
+ */
 type AccessLogFilter struct {
 	logChan chan AccessLogData
 }
-- 
GitLab