subsys-dfx-hilog-rich.md 5.0 KB
Newer Older
D
duangavin123 已提交
1
# HiLog开发指导
M
mamingshuai 已提交
2

D
duangavin123 已提交
3

D
duangavin123 已提交
4
## 概述
M
mamingshuai 已提交
5 6 7

HiLog是OpenHarmony日志系统,提供给系统框架、服务、以及应用打印日志,记录用户操作、系统运行状态等。

D
duangavin123 已提交
8
本章节内容对标准系统类设备(参考内存≥128MiB)适用。
M
mamingshuai 已提交
9 10


D
duangavin123 已提交
11 12
## 接口说明

D
duangavin123 已提交
13
  **表1** C++、C的函数接口
D
duangavin123 已提交
14

D
duangavin123 已提交
15
| C++ |  | C | 
D
duangavin123 已提交
16
| -------- | -------- | -------- |
D
duangavin123 已提交
17
| 类 | 方法 | 方法/宏 | 
D
duangavin123 已提交
18 19 20 21 22 23 24
| HiLog | int Debug(const HiLogLabel &label, const char \*fmt, ...) | HILOG_DEBUG(type, ...) | 
|  | int Info(const HiLogLabel &label, const char \*fmt, ...) | HILOG_INFO(type, ...) | 
|  | int Warn(const HiLogLabel &label, const char \*fmt, ...) | HILOG_WARN(type, ...) | 
|  | int Error(const HiLogLabel &label, const char \*fmt, ...) | HILOG_ERROR(type, ...) | 
|  | int Fatal(const HiLogLabel &label, const char \*fmt, ...) | HILOG_FATAL(type, ...) | 
|  | NA | int HiLogPrint(LogType type, LogLevel level, unsigned int domain, const char \*tag, const char \*fmt, ...) | 
|  | boolean IsLoggable(unsigned int domain, const char \*tag, LogLevel level) | bool HiLogIsLoggable(unsigned int domain, const char \*tag, LogLevel level) | 
D
duangavin123 已提交
25
| HiLogLabel | struct&nbsp;HiLogLabel | LOG_DOMAIN<br/>LOG_TAG | 
D
duangavin123 已提交
26

D
duangavin123 已提交
27
  **表2** C++接口说明函数参数和功能
D
duangavin123 已提交
28

D
duangavin123 已提交
29
| 类 | 方法 | 描述 | 
D
duangavin123 已提交
30 31 32 33 34 35 36
| -------- | -------- | -------- |
| HiLog | int&nbsp;Debug(const&nbsp;HiLogLabel&nbsp;&amp;label,&nbsp;const&nbsp;char&nbsp;\*fmt,&nbsp;...) | 功能:输出&nbsp;debug&nbsp;级别日志。<br/>输入参数:<br/>-&nbsp;label:用于标识输出日志的类型、业务领域、TAG。<br/>-&nbsp;format:常量格式字符串,包含参数类型、隐私标识。未加隐私标识的缺省为隐私参数。<br/>-&nbsp;fmt:格式化变参描述字符串。<br/>输出参数:无<br/>返回值:大于等于0,成功;小于0,失败。 | 
|  | int&nbsp;Info(const&nbsp;HiLogLabel&nbsp;&amp;label,&nbsp;const&nbsp;char&nbsp;\*fmt,&nbsp;...) | 功能:输出&nbsp;info&nbsp;级别日志。<br/>参数说明同&nbsp;Debug&nbsp;接口。 | 
|  | int&nbsp;Warn(const&nbsp;HiLogLabel&nbsp;&amp;label,&nbsp;const&nbsp;char&nbsp;\*fmt,&nbsp;...) | 功能:输出&nbsp;warn&nbsp;级别日志。<br/>参数说明同&nbsp;Debug&nbsp;接口。 | 
|  | int&nbsp;Error(const&nbsp;HiLogLabel&nbsp;&amp;label,&nbsp;const&nbsp;char&nbsp;\*fmt,&nbsp;...) | 功能:输出&nbsp;error&nbsp;级别日志。<br/>参数说明同&nbsp;Debug&nbsp;接口。 | 
|  | int&nbsp;Fatal(const&nbsp;HiLogLabel&nbsp;&amp;label,&nbsp;const&nbsp;char&nbsp;\*fmt,&nbsp;...) | 功能:输出&nbsp;fatal&nbsp;级别日志。<br/>参数说明同&nbsp;Debug&nbsp;接口。 | 
|  | boolean&nbsp;IsLoggable(unsigned&nbsp;int&nbsp;domain,&nbsp;const&nbsp;char&nbsp;\*tag,&nbsp;LogLevel&nbsp;level) | 功能:检查指定业务领域、TAG、级别的日志是否可以打印。<br/>输入参数:<br/>-&nbsp;domain:指定日志业务领域。<br/>-&nbsp;tag:&nbsp;指定日志TAG。<br/>-&nbsp;level:&nbsp;指定日志level。<br/>输出参数:无<br/>返回值:如果指定domain、tag、level日志可以打印则返回true;否则返回false。 | 
37
| HiLogLabel | struct&nbsp;HiLogLabel | 功能:初始化日志标签参数。<br/>成员参数:<br/>-&nbsp;type:&nbsp;指定日志type。<br/>-&nbsp;domain:指定日志业务领域。<br/>-&nbsp;tag:&nbsp;指定日志TAG。 | 
D
duangavin123 已提交
38 39 40 41 42 43 44 45


## 开发实例


### C使用示例

1. 在.c源文件中,包含hilog头文件:
D
duangavin123 已提交
46
     
D
duangavin123 已提交
47 48 49 50
   ```
   #include "hilog/log.h"
   ```

D
duangavin123 已提交
51 52
     定义domain、tag:
     
D
duangavin123 已提交
53 54 55 56 57 58 59
   ```
   #undef LOG_DOMAIN
   #undef LOG_TAG
   #define LOG_DOMAIN 0  // 标识业务领域,范围0x0~0xFFFFF
   #define LOG_TAG "MY_TAG"
   ```

D
duangavin123 已提交
60 61
     打印日志:
     
D
duangavin123 已提交
62 63 64 65 66
   ```
   HILOG_INFO(LOG_CORE, "Failed to visit %{private}s, reason:%{public}d.", url, errno);
   ```

2. 编译设置,在BUILD.gn里增加子系统SDK依赖:
D
duangavin123 已提交
67
     
D
duangavin123 已提交
68
   ```
Y
yaomanhai 已提交
69
   external_deps = [ "hilog_native:libhilog" ]
D
duangavin123 已提交
70 71 72 73 74 75
   ```


### C++使用示例

1. 在.h类定义头文件中,包含hilog头文件:
D
duangavin123 已提交
76
     
D
duangavin123 已提交
77 78 79 80
   ```
   #include "hilog/log.h"
   ```

D
duangavin123 已提交
81 82
     如果类头文件中需要日志打印,在头文件中类定义起始处 定义 LABEL:
     
D
duangavin123 已提交
83 84 85 86 87 88 89
   ```
   class MyClass {
   static constexpr OHOS::HiviewDFX::HiLogLabel LABEL = {LOG_CORE, 0, "MY_TAG"}; 
   ......
   }
   ```

D
duangavin123 已提交
90 91
     如果类头文件中没有日志打印,在类实现文件中 定义 LABEL:
     
D
duangavin123 已提交
92 93 94 95 96
   ```
   using namespace OHOS::HiviewDFX;
   static constexpr HiLogLabel LABEL = {LOG_CORE, 0, "MY_TAG"}; 
   ```

D
duangavin123 已提交
97 98
     打印日志:
     
D
duangavin123 已提交
99 100 101
   ```
   HiLog::Info(LABEL, "Failed to visit %{private}s, reason:%{public}d.", url, errno);
   ```
M
mamingshuai 已提交
102

D
duangavin123 已提交
103
2. 编译设置,在BUILD.gn里增加子系统SDK依赖:
D
duangavin123 已提交
104
     
D
duangavin123 已提交
105 106 107
   ```
   external_deps = [ "hiviewdfx:libhilog" ]
   ```