From bb9dba5d4d60068e3a23dd4b22eaf35db8c65920 Mon Sep 17 00:00:00 2001 From: yaomanhai Date: Thu, 16 Jun 2022 11:52:21 +0000 Subject: [PATCH] Bugfix: HiLog Dev API & Log Guide description error Signed-off-by: yaomanhao --- en/contribute/OpenHarmony-Log-guide.md | 2 +- en/device-dev/subsystems/subsys-dfx-hilog-rich.md | 2 +- zh-cn/contribute/OpenHarmony-Log-guide.md | 2 +- zh-cn/device-dev/subsystems/subsys-dfx-hilog-rich.md | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/en/contribute/OpenHarmony-Log-guide.md b/en/contribute/OpenHarmony-Log-guide.md index eb51c0ae55..d9cd2e96a9 100644 --- a/en/contribute/OpenHarmony-Log-guide.md +++ b/en/contribute/OpenHarmony-Log-guide.md @@ -218,7 +218,7 @@ Therefore, domain IDs allocated to BT can be further divided as follows: - **[Rule] The log service controls the log traffic of each service. Changing the default traffic threshold must be approved by the DFX.** -**Note:** The default log traffic threshold of each domain is **2048 KB/s** for an official version and **10240 KB/s** for a trial version. Any change to the default threshold must be approved by the DFX. +**Note:** The default log traffic threshold of each domain ID is **10240 Bytes/s** . Any change to the default threshold must be approved by the DFX. - **[Rule] Correctly set the log formatting privacy tags {public} and {private}**. diff --git a/en/device-dev/subsystems/subsys-dfx-hilog-rich.md b/en/device-dev/subsystems/subsys-dfx-hilog-rich.md index e9d31ea25c..674b777668 100644 --- a/en/device-dev/subsystems/subsys-dfx-hilog-rich.md +++ b/en/device-dev/subsystems/subsys-dfx-hilog-rich.md @@ -145,7 +145,7 @@ This development guide is applicable to standard-system devices \(reference memo

Initializes log tag parameters.

Members:

- + diff --git a/zh-cn/contribute/OpenHarmony-Log-guide.md b/zh-cn/contribute/OpenHarmony-Log-guide.md index 20eacb79b7..c31b6a164d 100644 --- a/zh-cn/contribute/OpenHarmony-Log-guide.md +++ b/zh-cn/contribute/OpenHarmony-Log-guide.md @@ -218,7 +218,7 @@ BT内的Domain ID可以进一步划分: - **【规则】日志服务会对每个业务的日志量进行流量管控,修改默认的流量阈值需要经过评审** -**说明:** 日志服务中会对每个领域的日志流量进行控制,在正式发布的版本上默认每个领域的日志流量阈值是**2048KB/秒**, 在调试版本上默认阈值是**10240KB/秒**, 如果需要修改默认阈值需经过DFX领域审查。 +**说明:** 日志服务中会对每个领域的日志流量进行控制,默认每个Domain ID的日志流量阈值是**10240字节/秒**, 如果需要修改默认阈值需经过DFX领域审查。 - **【规则】正确填写日志格式化隐私参数标识{public},{private}** diff --git a/zh-cn/device-dev/subsystems/subsys-dfx-hilog-rich.md b/zh-cn/device-dev/subsystems/subsys-dfx-hilog-rich.md index bf35fc6435..59f3e29fcc 100755 --- a/zh-cn/device-dev/subsystems/subsys-dfx-hilog-rich.md +++ b/zh-cn/device-dev/subsystems/subsys-dfx-hilog-rich.md @@ -34,7 +34,7 @@ HiLog是OpenHarmony日志系统,提供给系统框架、服务、以及应用 | | int Error(const HiLogLabel &label, const char \*fmt, ...) | 功能:输出 error 级别日志。
参数说明同 Debug 接口。 | | | int Fatal(const HiLogLabel &label, const char \*fmt, ...) | 功能:输出 fatal 级别日志。
参数说明同 Debug 接口。 | | | boolean IsLoggable(unsigned int domain, const char \*tag, LogLevel level) | 功能:检查指定业务领域、TAG、级别的日志是否可以打印。
输入参数:
- domain:指定日志业务领域。
- tag: 指定日志TAG。
- level: 指定日志level。
输出参数:无
返回值:如果指定domain、tag、level日志可以打印则返回true;否则返回false。 | -| HiLogLabel | struct HiLogLabel | 功能:初始化日志标签参数。
成员参数:
- domain:指定日志业务领域。
- tag: 指定日志TAG。
- level: 指定日志level。 | +| HiLogLabel | struct HiLogLabel | 功能:初始化日志标签参数。
成员参数:
- type: 指定日志type。
- domain:指定日志业务领域。
- tag: 指定日志TAG。 | ## 开发实例 -- GitLab