You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dubbo.apache.org by al...@apache.org on 2022/06/22 08:24:54 UTC

[dubbo-website] branch master updated: [fix] 调用信息记录 (#1126)

This is an automated email from the ASF dual-hosted git repository.

albumenj pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/dubbo-website.git


The following commit(s) were added to refs/heads/master by this push:
     new a715056d67 [fix] 调用信息记录 (#1126)
a715056d67 is described below

commit a715056d67d5b257b5fd8dedcb59cbed20a4cf78
Author: JIAN ZHONG <11...@qq.com>
AuthorDate: Wed Jun 22 16:24:50 2022 +0800

    [fix] 调用信息记录 (#1126)
---
 .../advanced-features-and-usage/rpc/accesslog.md     | 20 +++++++++++++++-----
 1 file changed, 15 insertions(+), 5 deletions(-)

diff --git a/content/zh/docs3-building/java-sdk/advanced-features-and-usage/rpc/accesslog.md b/content/zh/docs3-building/java-sdk/advanced-features-and-usage/rpc/accesslog.md
index 4595063625..998a872a9e 100644
--- a/content/zh/docs3-building/java-sdk/advanced-features-and-usage/rpc/accesslog.md
+++ b/content/zh/docs3-building/java-sdk/advanced-features-and-usage/rpc/accesslog.md
@@ -3,19 +3,29 @@ type: docs
 title: "调用信息记录"
 linkTitle: "调用信息记录"
 weight: 13
-description: "配置 Dubbo 的访问日志"
+description: "了解 dubbo3 调用信息记录通过访问日志来配置和使用"
 ---
+## 特性说明:
 
-如果你想记录每一次请求信息,可开启访问日志,类似于apache的访问日志。**注意**:此日志量比较大,请注意磁盘容量。
+在 dubbo3 日志分为日志适配和访问日志,如果想记录每一次请求信息,可开启访问日志,类似于 apache 的访问日志。
 
-将访问日志输出到当前应用的log4j日志:
+## 访问日志输出类型:
 
+-   log4j 日志
+-   指定文件
+
+## 使用场景:
+
+## 使用方式:
+
+将访问日志输出到当前应用的 log4j 日志:
 ```xml
 <dubbo:protocol accesslog="true" />
 ```
-
 将访问日志输出到指定文件:
-
 ```xml
 <dubbo:protocol accesslog="http://10.20.160.198/wiki/display/dubbo/foo/bar.log" />
 ```
+#### 注意:
+
+此日志量比较大,请注意磁盘容量。