From d6cc30d067053bc96206af3523385d62674e63f8 Mon Sep 17 00:00:00 2001 From: buzhenwang Date: Tue, 15 Mar 2022 09:18:31 +0800 Subject: [PATCH] fixed 0e0a04f from https://gitee.com/buzhenwang/interface_sdk-js/pulls/1108 hilog push Signed-off-by: buzhenwang --- api/@ohos.hilog.d.ts | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/api/@ohos.hilog.d.ts b/api/@ohos.hilog.d.ts index 0ec0879de9..30b1a427d1 100644 --- a/api/@ohos.hilog.d.ts +++ b/api/@ohos.hilog.d.ts @@ -16,7 +16,7 @@ /** * Provides interfaces to generate system logs. * -* @since 7 +* @since 8 * @syscap SystemCapability.HiviewDFX.HiLog */ @@ -28,7 +28,7 @@ declare namespace hilog { * @param tag Identifies the log tag. * @param format Indicates the log format string. * @param args Indicates the log parameters. - * @since 7 + * @since 8 * @syscap SystemCapability.HiviewDFX.HiLog */ function debug(domain: number, tag: string, format: string, ...args: any[]) : void; @@ -39,7 +39,7 @@ declare namespace hilog { * @param tag Identifies the log tag. * @param format Indicates the log format string. * @param args Indicates the log parameters. - * @since 7 + * @since 8 * @syscap SystemCapability.HiviewDFX.HiLog */ function info(domain: number, tag: string, format: string, ...args: any[]) : void; @@ -50,7 +50,7 @@ declare namespace hilog { * @param tag Identifies the log tag. * @param format Indicates the log format string. * @param args Indicates the log parameters. - * @since 7 + * @since 8 * @syscap SystemCapability.HiviewDFX.HiLog */ function warn(domain: number, tag: string, format: string, ...args: any[]) : void; @@ -61,7 +61,7 @@ declare namespace hilog { * @param tag Identifies the log tag. * @param format Indicates the log format string. * @param args Indicates the log parameters. - * @since 7 + * @since 8 * @syscap SystemCapability.HiviewDFX.HiLog */ function error(domain: number, tag: string, format: string, ...args: any[]) : void; @@ -72,7 +72,7 @@ declare namespace hilog { * @param tag Identifies the log tag. * @param format Indicates the log format string. * @param args Indicates the log parameters. - * @since 7 + * @since 8 * @syscap SystemCapability.HiviewDFX.HiLog */ function fatal(domain: number, tag: string, format: string, ...args: any[]) : void; @@ -82,14 +82,14 @@ declare namespace hilog { * @param domain Indicates the service domain, which is a hexadecimal integer ranging from 0x0 to 0xFFFFF * @param tag Identifies the log tag. * @param level log level - * @since 7 + * @since 8 * @syscap SystemCapability.HiviewDFX.HiLog */ function isLoggable(domain: number, tag: string, level: LogLevel) : boolean; /** * Log level define * - * @since 7 + * @since 8 * @syscap SystemCapability.HiviewDFX.HiLog */ enum LogLevel { -- Gitee