修改门禁编译问题 修改点如下:修改src/main/cpp/util/DebugLog.h文件中hilog的大小写
Signed-off-by: sunao <sunao19@h-partners.com>
This commit is contained in:
parent
9fbea8f624
commit
aa94d9c508
|
@ -1,3 +1,7 @@
|
||||||
|
## 1.0.3
|
||||||
|
- 修改门禁编译问题 修改点如下
|
||||||
|
- 修改src/main/cpp/util/DebugLog.h文件中hilog的大小写
|
||||||
|
|
||||||
## 1.0.2
|
## 1.0.2
|
||||||
- 支持x86编译
|
- 支持x86编译
|
||||||
|
|
||||||
|
|
|
@ -14,7 +14,7 @@
|
||||||
"main": "index.ets",
|
"main": "index.ets",
|
||||||
"repository": "https://gitee.com/openharmony-tpc/ImageKnife",
|
"repository": "https://gitee.com/openharmony-tpc/ImageKnife",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"version": "1.0.2",
|
"version": "1.0.3",
|
||||||
"tags": [
|
"tags": [
|
||||||
"Tool"
|
"Tool"
|
||||||
],
|
],
|
||||||
|
|
|
@ -21,7 +21,7 @@
|
||||||
#ifndef GPU_ImageETS_DebugLog_H
|
#ifndef GPU_ImageETS_DebugLog_H
|
||||||
#define GPU_ImageETS_DebugLog_H
|
#define GPU_ImageETS_DebugLog_H
|
||||||
|
|
||||||
#include <Hilog/log.h>
|
#include <hilog/log.h>
|
||||||
|
|
||||||
#define LOGI(...)((void)OH_LOG_Print(LOG_APP, LOG_INFO, LOG_DOMAIN, "OH_GPU_LOG", __VA_ARGS__))
|
#define LOGI(...)((void)OH_LOG_Print(LOG_APP, LOG_INFO, LOG_DOMAIN, "OH_GPU_LOG", __VA_ARGS__))
|
||||||
#define LOGD(...)((void)OH_LOG_Print(LOG_APP, LOG_DEBUG, LOG_DOMAIN, "OH_GPU_LOG", __VA_ARGS__))
|
#define LOGD(...)((void)OH_LOG_Print(LOG_APP, LOG_DEBUG, LOG_DOMAIN, "OH_GPU_LOG", __VA_ARGS__))
|
||||||
|
|
Loading…
Reference in New Issue