diff --git a/zh-cn/application-dev/reference/apis/js-apis-hilog.md b/zh-cn/application-dev/reference/apis/js-apis-hilog.md index 10809a70e6554b60481195dc90894f9adea1f896..ac6a312bcff2245870cb01e43ae16921629bfad2 100644 --- a/zh-cn/application-dev/reference/apis/js-apis-hilog.md +++ b/zh-cn/application-dev/reference/apis/js-apis-hilog.md @@ -10,9 +10,6 @@ import hilog from '@ohos.hilog'; ``` -## 系统能力 - -SystemCapability.HiviewDFX.HiLog ## hilog.debug @@ -20,6 +17,8 @@ debug(domain: number, tag: string, format: string, ...args: any[]) : void debug日志输出,打印debug级别日志。 +**系统能力:** SystemCapability.HiviewDFX.HiLog + **参数:** | 参数名 | 类型 | 必填 | 说明 | @@ -41,12 +40,14 @@ hilog.debug(0xFF00, "testTag", "%d: %{private}s World %{public}f", 1, "hello", 3 09-08 12:49:35.941 1547 2452 D FF00/testTag: 1: hello World 3.0 ``` -## **hilog.info** +## hilog.info info(domain: number, tag: string, format: string, ...args: any[]) : void info日志输出,打印info级别日志。 +**系统能力:** SystemCapability.HiviewDFX.HiLog + **参数:** | 参数名 | 类型 | 必填 | 说明 | @@ -74,6 +75,8 @@ warn(domain: number, tag: string, format: string, ...args: any[]) : void warn日志输出,打印warn级别日志。 +**系统能力:** SystemCapability.HiviewDFX.HiLog + **参数:** | 参数名 | 类型 | 必填 | 说明 | @@ -101,6 +104,8 @@ error(domain: number, tag: string, format: string, ...args: any[]) : void error日志输出,打印error级别日志。 +**系统能力:** SystemCapability.HiviewDFX.HiLog + **参数:** | 参数名 | 类型 | 必填 | 说明 | @@ -128,6 +133,8 @@ fatal(domain: number, tag: string, format: string, ...args: any[]) : void fatal日志输出,打印fatal级别日志。 +**系统能力:** SystemCapability.HiviewDFX.HiLog + **参数:** | 参数名 | 类型 | 必填 | 说明 | @@ -155,6 +162,8 @@ isLoggable(domain: number, tag: string, level: LogLevel) : boolean 检查一个domain、tag和日志级别是否被禁止打印日志。 +**系统能力:** SystemCapability.HiviewDFX.HiLog + **参数:** | 参数名 | 类型 | 必填 | 说明 | @@ -173,6 +182,8 @@ hilog.isLoggable(0xFF00, "testTag", hilog.DEBUG); 用于表示事件类型。 +**系统能力:** 以下各项对应的系统能力均为SystemCapability.HiviewDFX.HiLog。 + | 名称 | 默认值 | 说明 | | ----- | ------ | ----------- | | DEBUG | 3 | DEBUG级别。 |