From 25c3bf9875963d1f841b80531b4e1e327f281ea7 Mon Sep 17 00:00:00 2001 From: Ming Deng 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 2dadaaf4df..75c0582937 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 }