3个版本
0.0.3 | 2024年6月4日 |
---|---|
0.0.2 | 2024年6月4日 |
0.0.1 | 2024年3月19日 |
#1 in #ohos
5KB
108 行
hilog_binding
安装
cargo add hilog_binding
用法
use hilog_binding::hilog_debug;
use napi_derive_ohos::napi;
#[napi]
pub fn add(left: u32, right: u32) -> u32 {
hilog_debug!("hello world");
hilog_debug!(
"test",
LogOptions {
tag: Some("testTag"),
domain: None
}
);
left + right
}
依赖
~3KB