161847f8eSopenharmony_ci/*
261847f8eSopenharmony_ci * Copyright (c) 2021-2023 Huawei Device Co., Ltd.
361847f8eSopenharmony_ci * Licensed under the Apache License, Version 2.0 (the "License");
461847f8eSopenharmony_ci * you may not use this file except in compliance with the License.
561847f8eSopenharmony_ci * You may obtain a copy of the License at
661847f8eSopenharmony_ci *
761847f8eSopenharmony_ci *     http://www.apache.org/licenses/LICENSE-2.0
861847f8eSopenharmony_ci *
961847f8eSopenharmony_ci * Unless required by applicable law or agreed to in writing, software
1061847f8eSopenharmony_ci * distributed under the License is distributed on an "AS IS" BASIS,
1161847f8eSopenharmony_ci * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1261847f8eSopenharmony_ci * See the License for the specific language governing permissions and
1361847f8eSopenharmony_ci * limitations under the License.
1461847f8eSopenharmony_ci */
1561847f8eSopenharmony_ci
1661847f8eSopenharmony_ci/**
1761847f8eSopenharmony_ci * @file
1861847f8eSopenharmony_ci * @kit PerformanceAnalysisKit
1961847f8eSopenharmony_ci */
2061847f8eSopenharmony_ci
2161847f8eSopenharmony_ci/**
2261847f8eSopenharmony_ci* Provides interfaces to generate system logs.
2361847f8eSopenharmony_ci*
2461847f8eSopenharmony_ci* @namespace hilog
2561847f8eSopenharmony_ci* @syscap SystemCapability.HiviewDFX.HiLog
2661847f8eSopenharmony_ci* @since 7
2761847f8eSopenharmony_ci*/
2861847f8eSopenharmony_ci/**
2961847f8eSopenharmony_ci* Provides interfaces to generate system logs.
3061847f8eSopenharmony_ci*
3161847f8eSopenharmony_ci* @namespace hilog
3261847f8eSopenharmony_ci* @syscap SystemCapability.HiviewDFX.HiLog
3361847f8eSopenharmony_ci* @crossplatform
3461847f8eSopenharmony_ci* @since 10
3561847f8eSopenharmony_ci*/
3661847f8eSopenharmony_ci/**
3761847f8eSopenharmony_ci* Provides interfaces to generate system logs.
3861847f8eSopenharmony_ci*
3961847f8eSopenharmony_ci* @namespace hilog
4061847f8eSopenharmony_ci* @syscap SystemCapability.HiviewDFX.HiLog
4161847f8eSopenharmony_ci* @crossplatform
4261847f8eSopenharmony_ci* @atomicservice
4361847f8eSopenharmony_ci* @since 11
4461847f8eSopenharmony_ci*/
4561847f8eSopenharmony_cideclare namespace hilog {
4661847f8eSopenharmony_ci
4761847f8eSopenharmony_ci  /**
4861847f8eSopenharmony_ci   * Outputs debug-level logs.
4961847f8eSopenharmony_ci   *
5061847f8eSopenharmony_ci   * @param { number } domain Indicates the service domain, which is a hexadecimal integer ranging from 0x0 to 0xFFFF
5161847f8eSopenharmony_ci   * @param { string } tag Identifies the log tag, length cannot exceed 32 bytes.
5261847f8eSopenharmony_ci   * @param { string } format Indicates the log format string.
5361847f8eSopenharmony_ci   * @param { any[] }args Indicates the log parameters.
5461847f8eSopenharmony_ci   * @syscap SystemCapability.HiviewDFX.HiLog
5561847f8eSopenharmony_ci   * @since 7
5661847f8eSopenharmony_ci   */
5761847f8eSopenharmony_ci  /**
5861847f8eSopenharmony_ci   * Outputs debug-level logs.
5961847f8eSopenharmony_ci   *
6061847f8eSopenharmony_ci   * @param { number } domain Indicates the service domain, which is a hexadecimal integer ranging from 0x0 to 0xFFFF
6161847f8eSopenharmony_ci   * @param { string } tag Identifies the log tag, length cannot exceed 32 bytes.
6261847f8eSopenharmony_ci   * @param { string } format Indicates the log format string.
6361847f8eSopenharmony_ci   * @param { any[] }args Indicates the log parameters.
6461847f8eSopenharmony_ci   * @syscap SystemCapability.HiviewDFX.HiLog
6561847f8eSopenharmony_ci   * @crossplatform
6661847f8eSopenharmony_ci   * @since 10
6761847f8eSopenharmony_ci   */
6861847f8eSopenharmony_ci  /**
6961847f8eSopenharmony_ci   * Outputs debug-level logs.
7061847f8eSopenharmony_ci   *
7161847f8eSopenharmony_ci   * @param { number } domain Indicates the service domain, which is a hexadecimal integer ranging from 0x0 to 0xFFFF
7261847f8eSopenharmony_ci   * @param { string } tag Identifies the log tag, length cannot exceed 32 bytes.
7361847f8eSopenharmony_ci   * @param { string } format Indicates the log format string.
7461847f8eSopenharmony_ci   * @param { any[] }args Indicates the log parameters.
7561847f8eSopenharmony_ci   * @syscap SystemCapability.HiviewDFX.HiLog
7661847f8eSopenharmony_ci   * @crossplatform
7761847f8eSopenharmony_ci   * @atomicservice
7861847f8eSopenharmony_ci   * @since 11
7961847f8eSopenharmony_ci   */
8061847f8eSopenharmony_ci  function debug(domain: number, tag: string, format: string, ...args: any[]): void;
8161847f8eSopenharmony_ci
8261847f8eSopenharmony_ci  /**
8361847f8eSopenharmony_ci   * Outputs info-level logs.
8461847f8eSopenharmony_ci   *
8561847f8eSopenharmony_ci   * @param { number } domain Indicates the service domain, which is a hexadecimal integer ranging from 0x0 to 0xFFFF
8661847f8eSopenharmony_ci   * @param { string } tag Identifies the log tag, length cannot exceed 32 bytes.
8761847f8eSopenharmony_ci   * @param { string } format Indicates the log format string.
8861847f8eSopenharmony_ci   * @param { any[] }args Indicates the log parameters.
8961847f8eSopenharmony_ci   * @syscap SystemCapability.HiviewDFX.HiLog
9061847f8eSopenharmony_ci   * @since 7
9161847f8eSopenharmony_ci   */
9261847f8eSopenharmony_ci  /**
9361847f8eSopenharmony_ci   * Outputs info-level logs.
9461847f8eSopenharmony_ci   *
9561847f8eSopenharmony_ci   * @param { number } domain Indicates the service domain, which is a hexadecimal integer ranging from 0x0 to 0xFFFF
9661847f8eSopenharmony_ci   * @param { string } tag Identifies the log tag, length cannot exceed 32 bytes.
9761847f8eSopenharmony_ci   * @param { string } format Indicates the log format string.
9861847f8eSopenharmony_ci   * @param { any[] }args Indicates the log parameters.
9961847f8eSopenharmony_ci   * @syscap SystemCapability.HiviewDFX.HiLog
10061847f8eSopenharmony_ci   * @crossplatform
10161847f8eSopenharmony_ci   * @since 10
10261847f8eSopenharmony_ci   */
10361847f8eSopenharmony_ci  /**
10461847f8eSopenharmony_ci   * Outputs info-level logs.
10561847f8eSopenharmony_ci   *
10661847f8eSopenharmony_ci   * @param { number } domain Indicates the service domain, which is a hexadecimal integer ranging from 0x0 to 0xFFFF
10761847f8eSopenharmony_ci   * @param { string } tag Identifies the log tag, length cannot exceed 32 bytes.
10861847f8eSopenharmony_ci   * @param { string } format Indicates the log format string.
10961847f8eSopenharmony_ci   * @param { any[] }args Indicates the log parameters.
11061847f8eSopenharmony_ci   * @syscap SystemCapability.HiviewDFX.HiLog
11161847f8eSopenharmony_ci   * @crossplatform
11261847f8eSopenharmony_ci   * @atomicservice
11361847f8eSopenharmony_ci   * @since 11
11461847f8eSopenharmony_ci   */
11561847f8eSopenharmony_ci  function info(domain: number, tag: string, format: string, ...args: any[]): void;
11661847f8eSopenharmony_ci
11761847f8eSopenharmony_ci  /**
11861847f8eSopenharmony_ci   * Outputs warning-level logs.
11961847f8eSopenharmony_ci   *
12061847f8eSopenharmony_ci   * @param { number } domain Indicates the service domain, which is a hexadecimal integer ranging from 0x0 to 0xFFFF
12161847f8eSopenharmony_ci   * @param { string } tag Identifies the log tag, length cannot exceed 32 bytes.
12261847f8eSopenharmony_ci   * @param { string } format Indicates the log format string.
12361847f8eSopenharmony_ci   * @param { any[] }args Indicates the log parameters.
12461847f8eSopenharmony_ci   * @syscap SystemCapability.HiviewDFX.HiLog
12561847f8eSopenharmony_ci   * @since 7
12661847f8eSopenharmony_ci   */
12761847f8eSopenharmony_ci  /**
12861847f8eSopenharmony_ci   * Outputs warning-level logs.
12961847f8eSopenharmony_ci   *
13061847f8eSopenharmony_ci   * @param { number } domain Indicates the service domain, which is a hexadecimal integer ranging from 0x0 to 0xFFFF
13161847f8eSopenharmony_ci   * @param { string } tag Identifies the log tag, length cannot exceed 32 bytes.
13261847f8eSopenharmony_ci   * @param { string } format Indicates the log format string.
13361847f8eSopenharmony_ci   * @param { any[] }args Indicates the log parameters.
13461847f8eSopenharmony_ci   * @syscap SystemCapability.HiviewDFX.HiLog
13561847f8eSopenharmony_ci   * @crossplatform
13661847f8eSopenharmony_ci   * @since 10
13761847f8eSopenharmony_ci   */
13861847f8eSopenharmony_ci  /**
13961847f8eSopenharmony_ci   * Outputs warning-level logs.
14061847f8eSopenharmony_ci   *
14161847f8eSopenharmony_ci   * @param { number } domain Indicates the service domain, which is a hexadecimal integer ranging from 0x0 to 0xFFFF
14261847f8eSopenharmony_ci   * @param { string } tag Identifies the log tag, length cannot exceed 32 bytes.
14361847f8eSopenharmony_ci   * @param { string } format Indicates the log format string.
14461847f8eSopenharmony_ci   * @param { any[] }args Indicates the log parameters.
14561847f8eSopenharmony_ci   * @syscap SystemCapability.HiviewDFX.HiLog
14661847f8eSopenharmony_ci   * @crossplatform
14761847f8eSopenharmony_ci   * @atomicservice
14861847f8eSopenharmony_ci   * @since 11
14961847f8eSopenharmony_ci   */
15061847f8eSopenharmony_ci  function warn(domain: number, tag: string, format: string, ...args: any[]): void;
15161847f8eSopenharmony_ci
15261847f8eSopenharmony_ci  /**
15361847f8eSopenharmony_ci   * Outputs error-level logs.
15461847f8eSopenharmony_ci   *
15561847f8eSopenharmony_ci   * @param { number } domain Indicates the service domain, which is a hexadecimal integer ranging from 0x0 to 0xFFFF
15661847f8eSopenharmony_ci   * @param { string } tag Identifies the log tag, length cannot exceed 32 bytes.
15761847f8eSopenharmony_ci   * @param { string } format Indicates the log format string.
15861847f8eSopenharmony_ci   * @param { any[] }args Indicates the log parameters.
15961847f8eSopenharmony_ci   * @syscap SystemCapability.HiviewDFX.HiLog
16061847f8eSopenharmony_ci   * @since 7
16161847f8eSopenharmony_ci   */
16261847f8eSopenharmony_ci  /**
16361847f8eSopenharmony_ci   * Outputs error-level logs.
16461847f8eSopenharmony_ci   *
16561847f8eSopenharmony_ci   * @param { number } domain Indicates the service domain, which is a hexadecimal integer ranging from 0x0 to 0xFFFF
16661847f8eSopenharmony_ci   * @param { string } tag Identifies the log tag, length cannot exceed 32 bytes.
16761847f8eSopenharmony_ci   * @param { string } format Indicates the log format string.
16861847f8eSopenharmony_ci   * @param { any[] }args Indicates the log parameters.
16961847f8eSopenharmony_ci   * @syscap SystemCapability.HiviewDFX.HiLog
17061847f8eSopenharmony_ci   * @crossplatform
17161847f8eSopenharmony_ci   * @since 10
17261847f8eSopenharmony_ci   */
17361847f8eSopenharmony_ci  /**
17461847f8eSopenharmony_ci   * Outputs error-level logs.
17561847f8eSopenharmony_ci   *
17661847f8eSopenharmony_ci   * @param { number } domain Indicates the service domain, which is a hexadecimal integer ranging from 0x0 to 0xFFFF
17761847f8eSopenharmony_ci   * @param { string } tag Identifies the log tag, length cannot exceed 32 bytes.
17861847f8eSopenharmony_ci   * @param { string } format Indicates the log format string.
17961847f8eSopenharmony_ci   * @param { any[] }args Indicates the log parameters.
18061847f8eSopenharmony_ci   * @syscap SystemCapability.HiviewDFX.HiLog
18161847f8eSopenharmony_ci   * @crossplatform
18261847f8eSopenharmony_ci   * @atomicservice
18361847f8eSopenharmony_ci   * @since 11
18461847f8eSopenharmony_ci   */
18561847f8eSopenharmony_ci  function error(domain: number, tag: string, format: string, ...args: any[]): void;
18661847f8eSopenharmony_ci
18761847f8eSopenharmony_ci  /**
18861847f8eSopenharmony_ci   * Outputs fatal-level logs.
18961847f8eSopenharmony_ci   *
19061847f8eSopenharmony_ci   * @param { number } domain Indicates the service domain, which is a hexadecimal integer ranging from 0x0 to 0xFFFF
19161847f8eSopenharmony_ci   * @param { string } tag Identifies the log tag, length cannot exceed 32 bytes.
19261847f8eSopenharmony_ci   * @param { string } format Indicates the log format string.
19361847f8eSopenharmony_ci   * @param { any[] }args Indicates the log parameters.
19461847f8eSopenharmony_ci   * @syscap SystemCapability.HiviewDFX.HiLog
19561847f8eSopenharmony_ci   * @since 7
19661847f8eSopenharmony_ci   */
19761847f8eSopenharmony_ci  /**
19861847f8eSopenharmony_ci   * Outputs fatal-level logs.
19961847f8eSopenharmony_ci   *
20061847f8eSopenharmony_ci   * @param { number } domain Indicates the service domain, which is a hexadecimal integer ranging from 0x0 to 0xFFFF
20161847f8eSopenharmony_ci   * @param { string } tag Identifies the log tag, length cannot exceed 32 bytes.
20261847f8eSopenharmony_ci   * @param { string } format Indicates the log format string.
20361847f8eSopenharmony_ci   * @param { any[] }args Indicates the log parameters.
20461847f8eSopenharmony_ci   * @syscap SystemCapability.HiviewDFX.HiLog
20561847f8eSopenharmony_ci   * @crossplatform
20661847f8eSopenharmony_ci   * @since 10
20761847f8eSopenharmony_ci   */
20861847f8eSopenharmony_ci  /**
20961847f8eSopenharmony_ci   * Outputs fatal-level logs.
21061847f8eSopenharmony_ci   *
21161847f8eSopenharmony_ci   * @param { number } domain Indicates the service domain, which is a hexadecimal integer ranging from 0x0 to 0xFFFF
21261847f8eSopenharmony_ci   * @param { string } tag Identifies the log tag, length cannot exceed 32 bytes.
21361847f8eSopenharmony_ci   * @param { string } format Indicates the log format string.
21461847f8eSopenharmony_ci   * @param { any[] }args Indicates the log parameters.
21561847f8eSopenharmony_ci   * @syscap SystemCapability.HiviewDFX.HiLog
21661847f8eSopenharmony_ci   * @crossplatform
21761847f8eSopenharmony_ci   * @atomicservice
21861847f8eSopenharmony_ci   * @since 11
21961847f8eSopenharmony_ci   */
22061847f8eSopenharmony_ci  function fatal(domain: number, tag: string, format: string, ...args: any[]): void;
22161847f8eSopenharmony_ci
22261847f8eSopenharmony_ci  /**
22361847f8eSopenharmony_ci   * Checks whether logs of the specified tag, and level can be printed.
22461847f8eSopenharmony_ci   *
22561847f8eSopenharmony_ci   * @param { number } domain Indicates the service domain, which is a hexadecimal integer ranging from 0x0 to 0xFFFF
22661847f8eSopenharmony_ci   * @param { string } tag Identifies the log tag, length cannot exceed 32 bytes.
22761847f8eSopenharmony_ci   * @param { LogLevel } level log level
22861847f8eSopenharmony_ci   * @returns { boolean }
22961847f8eSopenharmony_ci   * @syscap SystemCapability.HiviewDFX.HiLog
23061847f8eSopenharmony_ci   * @since 7
23161847f8eSopenharmony_ci   */
23261847f8eSopenharmony_ci  /**
23361847f8eSopenharmony_ci   * Checks whether logs of the specified tag, and level can be printed.
23461847f8eSopenharmony_ci   *
23561847f8eSopenharmony_ci   * @param { number } domain Indicates the service domain, which is a hexadecimal integer ranging from 0x0 to 0xFFFF
23661847f8eSopenharmony_ci   * @param { string } tag Identifies the log tag, length cannot exceed 32 bytes.
23761847f8eSopenharmony_ci   * @param { LogLevel } level log level
23861847f8eSopenharmony_ci   * @returns { boolean }
23961847f8eSopenharmony_ci   * @syscap SystemCapability.HiviewDFX.HiLog
24061847f8eSopenharmony_ci   * @atomicservice
24161847f8eSopenharmony_ci   * @since 11
24261847f8eSopenharmony_ci   */
24361847f8eSopenharmony_ci  function isLoggable(domain: number, tag: string, level: LogLevel): boolean;
24461847f8eSopenharmony_ci
24561847f8eSopenharmony_ci  /**
24661847f8eSopenharmony_ci   * Log level define
24761847f8eSopenharmony_ci   *
24861847f8eSopenharmony_ci   * @syscap SystemCapability.HiviewDFX.HiLog
24961847f8eSopenharmony_ci   * @since 7
25061847f8eSopenharmony_ci   */
25161847f8eSopenharmony_ci  /**
25261847f8eSopenharmony_ci   * Log level define
25361847f8eSopenharmony_ci   *
25461847f8eSopenharmony_ci   * @enum { number }
25561847f8eSopenharmony_ci   * @syscap SystemCapability.HiviewDFX.HiLog
25661847f8eSopenharmony_ci   * @crossplatform
25761847f8eSopenharmony_ci   * @since 10
25861847f8eSopenharmony_ci   */
25961847f8eSopenharmony_ci  /**
26061847f8eSopenharmony_ci   * Log level define
26161847f8eSopenharmony_ci   *
26261847f8eSopenharmony_ci   * @enum { number }
26361847f8eSopenharmony_ci   * @syscap SystemCapability.HiviewDFX.HiLog
26461847f8eSopenharmony_ci   * @crossplatform
26561847f8eSopenharmony_ci   * @atomicservice
26661847f8eSopenharmony_ci   * @since 11
26761847f8eSopenharmony_ci   */
26861847f8eSopenharmony_ci  enum LogLevel {
26961847f8eSopenharmony_ci    /**
27061847f8eSopenharmony_ci     * DEBUG Log level define
27161847f8eSopenharmony_ci     *
27261847f8eSopenharmony_ci     * @syscap SystemCapability.HiviewDFX.HiLog
27361847f8eSopenharmony_ci     * @since 7
27461847f8eSopenharmony_ci     */
27561847f8eSopenharmony_ci    /**
27661847f8eSopenharmony_ci     * DEBUG Log level define
27761847f8eSopenharmony_ci     *
27861847f8eSopenharmony_ci     * @syscap SystemCapability.HiviewDFX.HiLog
27961847f8eSopenharmony_ci     * @crossplatform
28061847f8eSopenharmony_ci     * @since 10
28161847f8eSopenharmony_ci     */
28261847f8eSopenharmony_ci    /**
28361847f8eSopenharmony_ci     * DEBUG Log level define
28461847f8eSopenharmony_ci     *
28561847f8eSopenharmony_ci     * @syscap SystemCapability.HiviewDFX.HiLog
28661847f8eSopenharmony_ci     * @crossplatform
28761847f8eSopenharmony_ci     * @atomicservice
28861847f8eSopenharmony_ci     * @since 11
28961847f8eSopenharmony_ci     */
29061847f8eSopenharmony_ci    DEBUG = 3,
29161847f8eSopenharmony_ci    /**
29261847f8eSopenharmony_ci     * INFO Log level define
29361847f8eSopenharmony_ci     *
29461847f8eSopenharmony_ci     * @syscap SystemCapability.HiviewDFX.HiLog
29561847f8eSopenharmony_ci     * @since 7
29661847f8eSopenharmony_ci     */
29761847f8eSopenharmony_ci    /**
29861847f8eSopenharmony_ci     * INFO Log level define
29961847f8eSopenharmony_ci     *
30061847f8eSopenharmony_ci     * @syscap SystemCapability.HiviewDFX.HiLog
30161847f8eSopenharmony_ci     * @crossplatform
30261847f8eSopenharmony_ci     * @since 10
30361847f8eSopenharmony_ci     */
30461847f8eSopenharmony_ci    /**
30561847f8eSopenharmony_ci     * INFO Log level define
30661847f8eSopenharmony_ci     *
30761847f8eSopenharmony_ci     * @syscap SystemCapability.HiviewDFX.HiLog
30861847f8eSopenharmony_ci     * @crossplatform
30961847f8eSopenharmony_ci     * @atomicservice
31061847f8eSopenharmony_ci     * @since 11
31161847f8eSopenharmony_ci     */
31261847f8eSopenharmony_ci    INFO = 4,
31361847f8eSopenharmony_ci    /**
31461847f8eSopenharmony_ci     * WARN Log level define
31561847f8eSopenharmony_ci     *
31661847f8eSopenharmony_ci     * @syscap SystemCapability.HiviewDFX.HiLog
31761847f8eSopenharmony_ci     * @since 7
31861847f8eSopenharmony_ci     */
31961847f8eSopenharmony_ci    /**
32061847f8eSopenharmony_ci     * WARN Log level define
32161847f8eSopenharmony_ci     *
32261847f8eSopenharmony_ci     * @syscap SystemCapability.HiviewDFX.HiLog
32361847f8eSopenharmony_ci     * @crossplatform
32461847f8eSopenharmony_ci     * @since 10
32561847f8eSopenharmony_ci     */
32661847f8eSopenharmony_ci    /**
32761847f8eSopenharmony_ci     * WARN Log level define
32861847f8eSopenharmony_ci     *
32961847f8eSopenharmony_ci     * @syscap SystemCapability.HiviewDFX.HiLog
33061847f8eSopenharmony_ci     * @crossplatform
33161847f8eSopenharmony_ci     * @atomicservice
33261847f8eSopenharmony_ci     * @since 11
33361847f8eSopenharmony_ci     */
33461847f8eSopenharmony_ci    WARN = 5,
33561847f8eSopenharmony_ci    /**
33661847f8eSopenharmony_ci     * ERROR Log level define
33761847f8eSopenharmony_ci     *
33861847f8eSopenharmony_ci     * @syscap SystemCapability.HiviewDFX.HiLog
33961847f8eSopenharmony_ci     * @since 7
34061847f8eSopenharmony_ci     */
34161847f8eSopenharmony_ci    /**
34261847f8eSopenharmony_ci     * ERROR Log level define
34361847f8eSopenharmony_ci     *
34461847f8eSopenharmony_ci     * @syscap SystemCapability.HiviewDFX.HiLog
34561847f8eSopenharmony_ci     * @crossplatform
34661847f8eSopenharmony_ci     * @since 10
34761847f8eSopenharmony_ci     */
34861847f8eSopenharmony_ci    /**
34961847f8eSopenharmony_ci     * ERROR Log level define
35061847f8eSopenharmony_ci     *
35161847f8eSopenharmony_ci     * @syscap SystemCapability.HiviewDFX.HiLog
35261847f8eSopenharmony_ci     * @crossplatform
35361847f8eSopenharmony_ci     * @atomicservice
35461847f8eSopenharmony_ci     * @since 11
35561847f8eSopenharmony_ci     */
35661847f8eSopenharmony_ci    ERROR = 6,
35761847f8eSopenharmony_ci    /**
35861847f8eSopenharmony_ci     * FATAL Log level define
35961847f8eSopenharmony_ci     *
36061847f8eSopenharmony_ci     * @syscap SystemCapability.HiviewDFX.HiLog
36161847f8eSopenharmony_ci     * @since 7
36261847f8eSopenharmony_ci     */
36361847f8eSopenharmony_ci    /**
36461847f8eSopenharmony_ci     * FATAL Log level define
36561847f8eSopenharmony_ci     *
36661847f8eSopenharmony_ci     * @syscap SystemCapability.HiviewDFX.HiLog
36761847f8eSopenharmony_ci     * @crossplatform
36861847f8eSopenharmony_ci     * @since 10
36961847f8eSopenharmony_ci     */
37061847f8eSopenharmony_ci    /**
37161847f8eSopenharmony_ci     * FATAL Log level define
37261847f8eSopenharmony_ci     *
37361847f8eSopenharmony_ci     * @syscap SystemCapability.HiviewDFX.HiLog
37461847f8eSopenharmony_ci     * @crossplatform
37561847f8eSopenharmony_ci     * @atomicservice
37661847f8eSopenharmony_ci     * @since 11
37761847f8eSopenharmony_ci     */
37861847f8eSopenharmony_ci    FATAL = 7
37961847f8eSopenharmony_ci  }
38061847f8eSopenharmony_ci}
38161847f8eSopenharmony_ci
38261847f8eSopenharmony_ciexport default hilog;