2022-01-17 06:36:54 +00:00
|
|
|
/*
|
2023-05-27 06:21:06 +00:00
|
|
|
* Copyright (c) 2021-2023 Huawei Device Co., Ltd.
|
2022-01-17 06:36:54 +00:00
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Provides interfaces to generate system logs.
|
|
|
|
*
|
2023-05-27 06:21:06 +00:00
|
|
|
* @namespace hilog
|
2022-02-11 06:38:27 +00:00
|
|
|
* @syscap SystemCapability.HiviewDFX.HiLog
|
2023-05-27 06:21:06 +00:00
|
|
|
* @since 7
|
2022-01-17 06:36:54 +00:00
|
|
|
*/
|
|
|
|
|
2023-05-27 06:21:06 +00:00
|
|
|
/**
|
|
|
|
* Provides interfaces to generate system logs.
|
|
|
|
*
|
|
|
|
* @namespace hilog
|
|
|
|
* @syscap SystemCapability.HiviewDFX.HiLog
|
|
|
|
* @crossplatform
|
|
|
|
* @since 10
|
|
|
|
*/
|
2022-01-17 06:36:54 +00:00
|
|
|
declare namespace hilog {
|
2023-05-27 06:21:06 +00:00
|
|
|
|
2022-01-17 06:36:54 +00:00
|
|
|
/**
|
|
|
|
* Outputs debug-level logs.
|
|
|
|
*
|
2023-05-27 06:21:06 +00:00
|
|
|
* @param { number } domain Indicates the service domain, which is a hexadecimal integer ranging from 0x0 to 0xFFFF
|
|
|
|
* @param { string } tag Identifies the log tag.
|
|
|
|
* @param { string } format Indicates the log format string.
|
|
|
|
* @param { any[] }args Indicates the log parameters.
|
|
|
|
* @syscap SystemCapability.HiviewDFX.HiLog
|
2022-03-17 07:42:19 +00:00
|
|
|
* @since 7
|
2023-05-27 06:21:06 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Outputs debug-level logs.
|
|
|
|
*
|
|
|
|
* @param { number } domain Indicates the service domain, which is a hexadecimal integer ranging from 0x0 to 0xFFFF
|
|
|
|
* @param { string } tag Identifies the log tag.
|
|
|
|
* @param { string } format Indicates the log format string.
|
|
|
|
* @param { any[] }args Indicates the log parameters.
|
2022-02-11 06:38:27 +00:00
|
|
|
* @syscap SystemCapability.HiviewDFX.HiLog
|
2023-05-27 06:21:06 +00:00
|
|
|
* @crossplatform
|
|
|
|
* @since 10
|
2022-01-17 06:36:54 +00:00
|
|
|
*/
|
2023-04-21 09:47:24 +00:00
|
|
|
function debug(domain: number, tag: string, format: string, ...args: any[]): void;
|
2023-05-27 06:21:06 +00:00
|
|
|
|
2022-01-17 06:36:54 +00:00
|
|
|
/**
|
|
|
|
* Outputs info-level logs.
|
|
|
|
*
|
2023-05-27 06:21:06 +00:00
|
|
|
* @param { number } domain Indicates the service domain, which is a hexadecimal integer ranging from 0x0 to 0xFFFF
|
|
|
|
* @param { string } tag Identifies the log tag.
|
|
|
|
* @param { string } format Indicates the log format string.
|
|
|
|
* @param { any[] }args Indicates the log parameters.
|
|
|
|
* @syscap SystemCapability.HiviewDFX.HiLog
|
2022-03-17 07:42:19 +00:00
|
|
|
* @since 7
|
2023-05-27 06:21:06 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Outputs info-level logs.
|
|
|
|
*
|
|
|
|
* @param { number } domain Indicates the service domain, which is a hexadecimal integer ranging from 0x0 to 0xFFFF
|
|
|
|
* @param { string } tag Identifies the log tag.
|
|
|
|
* @param { string } format Indicates the log format string.
|
|
|
|
* @param { any[] }args Indicates the log parameters.
|
2022-02-11 06:38:27 +00:00
|
|
|
* @syscap SystemCapability.HiviewDFX.HiLog
|
2023-05-27 06:21:06 +00:00
|
|
|
* @crossplatform
|
|
|
|
* @since 10
|
2022-01-17 06:36:54 +00:00
|
|
|
*/
|
2023-04-21 09:47:24 +00:00
|
|
|
function info(domain: number, tag: string, format: string, ...args: any[]): void;
|
2023-05-27 06:21:06 +00:00
|
|
|
|
2022-01-17 06:36:54 +00:00
|
|
|
/**
|
|
|
|
* Outputs warning-level logs.
|
|
|
|
*
|
2023-05-27 06:21:06 +00:00
|
|
|
* @param { number } domain Indicates the service domain, which is a hexadecimal integer ranging from 0x0 to 0xFFFF
|
|
|
|
* @param { string } tag Identifies the log tag.
|
|
|
|
* @param { string } format Indicates the log format string.
|
|
|
|
* @param { any[] }args Indicates the log parameters.
|
|
|
|
* @syscap SystemCapability.HiviewDFX.HiLog
|
2022-03-17 07:42:19 +00:00
|
|
|
* @since 7
|
2023-05-27 06:21:06 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Outputs warning-level logs.
|
|
|
|
*
|
|
|
|
* @param { number } domain Indicates the service domain, which is a hexadecimal integer ranging from 0x0 to 0xFFFF
|
|
|
|
* @param { string } tag Identifies the log tag.
|
|
|
|
* @param { string } format Indicates the log format string.
|
|
|
|
* @param { any[] }args Indicates the log parameters.
|
2022-02-11 06:38:27 +00:00
|
|
|
* @syscap SystemCapability.HiviewDFX.HiLog
|
2023-05-27 06:21:06 +00:00
|
|
|
* @crossplatform
|
|
|
|
* @since 10
|
2022-01-17 06:36:54 +00:00
|
|
|
*/
|
2023-04-21 09:47:24 +00:00
|
|
|
function warn(domain: number, tag: string, format: string, ...args: any[]): void;
|
2023-05-27 06:21:06 +00:00
|
|
|
|
2022-01-17 06:36:54 +00:00
|
|
|
/**
|
|
|
|
* Outputs error-level logs.
|
|
|
|
*
|
2023-05-27 06:21:06 +00:00
|
|
|
* @param { number } domain Indicates the service domain, which is a hexadecimal integer ranging from 0x0 to 0xFFFF
|
|
|
|
* @param { string } tag Identifies the log tag.
|
|
|
|
* @param { string } format Indicates the log format string.
|
|
|
|
* @param { any[] }args Indicates the log parameters.
|
|
|
|
* @syscap SystemCapability.HiviewDFX.HiLog
|
2022-03-17 07:42:19 +00:00
|
|
|
* @since 7
|
2023-05-27 06:21:06 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Outputs error-level logs.
|
|
|
|
*
|
|
|
|
* @param { number } domain Indicates the service domain, which is a hexadecimal integer ranging from 0x0 to 0xFFFF
|
|
|
|
* @param { string } tag Identifies the log tag.
|
|
|
|
* @param { string } format Indicates the log format string.
|
|
|
|
* @param { any[] }args Indicates the log parameters.
|
2022-02-11 06:38:27 +00:00
|
|
|
* @syscap SystemCapability.HiviewDFX.HiLog
|
2023-05-27 06:21:06 +00:00
|
|
|
* @crossplatform
|
|
|
|
* @since 10
|
2022-01-17 06:36:54 +00:00
|
|
|
*/
|
2023-04-21 09:47:24 +00:00
|
|
|
function error(domain: number, tag: string, format: string, ...args: any[]): void;
|
2023-05-27 06:21:06 +00:00
|
|
|
|
2022-01-17 06:36:54 +00:00
|
|
|
/**
|
|
|
|
* Outputs fatal-level logs.
|
|
|
|
*
|
2023-05-27 06:21:06 +00:00
|
|
|
* @param { number } domain Indicates the service domain, which is a hexadecimal integer ranging from 0x0 to 0xFFFF
|
|
|
|
* @param { string } tag Identifies the log tag.
|
|
|
|
* @param { string } format Indicates the log format string.
|
|
|
|
* @param { any[] }args Indicates the log parameters.
|
|
|
|
* @syscap SystemCapability.HiviewDFX.HiLog
|
2022-03-17 07:42:19 +00:00
|
|
|
* @since 7
|
2023-05-27 06:21:06 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Outputs fatal-level logs.
|
|
|
|
*
|
|
|
|
* @param { number } domain Indicates the service domain, which is a hexadecimal integer ranging from 0x0 to 0xFFFF
|
|
|
|
* @param { string } tag Identifies the log tag.
|
|
|
|
* @param { string } format Indicates the log format string.
|
|
|
|
* @param { any[] }args Indicates the log parameters.
|
2022-02-11 06:38:27 +00:00
|
|
|
* @syscap SystemCapability.HiviewDFX.HiLog
|
2023-05-27 06:21:06 +00:00
|
|
|
* @crossplatform
|
|
|
|
* @since 10
|
2022-01-17 06:36:54 +00:00
|
|
|
*/
|
2023-04-21 09:47:24 +00:00
|
|
|
function fatal(domain: number, tag: string, format: string, ...args: any[]): void;
|
2023-05-27 06:21:06 +00:00
|
|
|
|
2022-01-17 06:36:54 +00:00
|
|
|
/**
|
|
|
|
* Checks whether logs of the specified tag, and level can be printed.
|
|
|
|
*
|
2023-05-27 06:21:06 +00:00
|
|
|
* @param { number } domain Indicates the service domain, which is a hexadecimal integer ranging from 0x0 to 0xFFFF
|
|
|
|
* @param { string } tag Identifies the log tag.
|
|
|
|
* @param { LogLevel } level log level
|
|
|
|
* @returns { boolean }
|
|
|
|
* @syscap SystemCapability.HiviewDFX.HiLog
|
2022-03-17 07:42:19 +00:00
|
|
|
* @since 7
|
2023-05-27 06:21:06 +00:00
|
|
|
*/
|
2023-04-21 09:47:24 +00:00
|
|
|
function isLoggable(domain: number, tag: string, level: LogLevel): boolean;
|
2023-05-27 06:21:06 +00:00
|
|
|
|
2022-01-17 06:36:54 +00:00
|
|
|
/**
|
|
|
|
* Log level define
|
2022-02-11 06:34:56 +00:00
|
|
|
*
|
2023-05-27 06:21:06 +00:00
|
|
|
* @syscap SystemCapability.HiviewDFX.HiLog
|
2022-03-17 07:42:19 +00:00
|
|
|
* @since 7
|
2023-05-27 06:21:06 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Log level define
|
|
|
|
*
|
|
|
|
* @enum { number }
|
2022-02-11 06:38:27 +00:00
|
|
|
* @syscap SystemCapability.HiviewDFX.HiLog
|
2023-05-27 06:21:06 +00:00
|
|
|
* @crossplatform
|
|
|
|
* @since 10
|
2022-01-17 06:36:54 +00:00
|
|
|
*/
|
|
|
|
enum LogLevel {
|
2023-07-07 09:40:45 +00:00
|
|
|
/**
|
|
|
|
* DEBUG Log level define
|
|
|
|
*
|
|
|
|
* @syscap SystemCapability.HiviewDFX.HiLog
|
|
|
|
* @since 7
|
|
|
|
*/
|
|
|
|
/**
|
|
|
|
* DEBUG Log level define
|
|
|
|
*
|
|
|
|
* @syscap SystemCapability.HiviewDFX.HiLog
|
|
|
|
* @crossplatform
|
|
|
|
* @since 10
|
|
|
|
*/
|
2023-04-21 09:47:24 +00:00
|
|
|
DEBUG = 3,
|
2023-07-07 09:40:45 +00:00
|
|
|
/**
|
|
|
|
* INFO Log level define
|
|
|
|
*
|
|
|
|
* @syscap SystemCapability.HiviewDFX.HiLog
|
|
|
|
* @since 7
|
|
|
|
*/
|
|
|
|
/**
|
|
|
|
* INFO Log level define
|
|
|
|
*
|
|
|
|
* @syscap SystemCapability.HiviewDFX.HiLog
|
|
|
|
* @crossplatform
|
|
|
|
* @since 10
|
|
|
|
*/
|
2023-04-21 09:47:24 +00:00
|
|
|
INFO = 4,
|
2023-07-07 09:40:45 +00:00
|
|
|
/**
|
|
|
|
* WARN Log level define
|
|
|
|
*
|
|
|
|
* @syscap SystemCapability.HiviewDFX.HiLog
|
|
|
|
* @since 7
|
|
|
|
*/
|
|
|
|
/**
|
|
|
|
* WARN Log level define
|
|
|
|
*
|
|
|
|
* @syscap SystemCapability.HiviewDFX.HiLog
|
|
|
|
* @crossplatform
|
|
|
|
* @since 10
|
|
|
|
*/
|
2023-04-21 09:47:24 +00:00
|
|
|
WARN = 5,
|
2023-07-07 09:40:45 +00:00
|
|
|
/**
|
|
|
|
* ERROR Log level define
|
|
|
|
*
|
|
|
|
* @syscap SystemCapability.HiviewDFX.HiLog
|
|
|
|
* @since 7
|
|
|
|
*/
|
|
|
|
/**
|
|
|
|
* ERROR Log level define
|
|
|
|
*
|
|
|
|
* @syscap SystemCapability.HiviewDFX.HiLog
|
|
|
|
* @crossplatform
|
|
|
|
* @since 10
|
|
|
|
*/
|
2023-04-21 09:47:24 +00:00
|
|
|
ERROR = 6,
|
2023-07-07 09:40:45 +00:00
|
|
|
/**
|
|
|
|
* FATAL Log level define
|
|
|
|
*
|
|
|
|
* @syscap SystemCapability.HiviewDFX.HiLog
|
|
|
|
* @since 7
|
|
|
|
*/
|
|
|
|
/**
|
|
|
|
* FATAL Log level define
|
|
|
|
*
|
|
|
|
* @syscap SystemCapability.HiviewDFX.HiLog
|
|
|
|
* @crossplatform
|
|
|
|
* @since 10
|
|
|
|
*/
|
2023-05-27 06:21:06 +00:00
|
|
|
FATAL = 7
|
2022-01-17 06:36:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default hilog;
|