Logging
log
ํฌ๋ ์ดํธ๋ฅผ ์ฌ์ฉํ์ฌ logcat
(์ฅ์น)๋ stdout
(ํธ์คํธ)์์ ์๋์ผ๋ก ๋ก๊ทธ๋ฅผ ๊ธฐ๋กํ๋๋ก ํฉ๋๋ค:
You should use the
log
crate to automatically log tologcat
(on-device) orstdout
(on-host):
hello_rust_logs/Android.bp:
rust_binary {
name: "hello_rust_logs",
crate_name: "hello_rust_logs",
srcs: ["src/main.rs"],
rustlibs: [
"liblog_rust",
"liblogger",
],
prefer_rlib: true,
host_supported: true,
}
hello_rust_logs/src/main.rs:
//! Rust logging demo.
use log::{debug, error};
/// Logs a greeting.
fn main() {
logger::init(
logger::Config::default()
.with_tag_on_device("rust")
.with_min_level(log::Level::Trace),
);
debug!("Starting program.");
error!("Something went wrong!");
}
์ฅ์น์์ ๋ฐ์ด๋๋ฆฌ๋ฅผ ๋น๋, ํธ์, ์คํํฉ๋๋ค:
Build, push, and run the binary on your device:
$ m hello_rust_logs
$ adb push $ANDROID_PRODUCT_OUT/system/bin/hello_rust_logs /data/local/tmp
$ adb shell /data/local/tmp/hello_rust_logs
adb logcat
์ปค๋งจ๋๋ก ๋ก๊ทธ๋ฅผ ํ์ธํฉ๋๋ค:
The logs show up in
adb logcat
:
$ adb logcat -s rust
09-08 08:38:32.454 2420 2420 D rust: hello_rust_logs: Starting program.
09-08 08:38:32.454 2420 2420 I rust: hello_rust_logs: Things are going fine.
09-08 08:38:32.454 2420 2420 E rust: hello_rust_logs: Something went wrong!