commit | 04dd98ed57154a706acbb6117a66185b176f215e | [log] [tgz] |
---|---|---|
author | Jeff Vander Stoep <[email protected]> | Mon Jan 29 14:22:00 2024 +0000 |
committer | Automerger Merge Worker <[email protected]> | Mon Jan 29 14:22:00 2024 +0000 |
tree | 0d07bc0a5fa8f8d91e11653083cdfebfe02be907 | |
parent | 7214ce8ee8295b18871a8f3933a082351404a664 [diff] | |
parent | 8328bd87a67c00e8224c1cbdb64c7044b3ec07a9 [diff] |
Provide with_log_buffer() function am: 8328bd87a6 Original change: https://android-review.googlesource.com/c/platform/external/rust/crates/android_logger/+/2931853 Change-Id: Ia31c2d773aa98516323f93da99b76e82e96ebd54 Signed-off-by: Automerger Merge Worker <[email protected]>
This library is a drop-in replacement for env_logger
. Instead, it outputs messages to android's logcat.
This only works on Android and requires linking to log
which is only available under android. With Cargo, it is possible to conditionally require this library:
[target.'cfg(target_os = "android")'.dependencies] android_logger = "0.11"
Example of initialization on activity creation, with log configuration:
#[macro_use] extern crate log; extern crate android_logger; use log::LevelFilter; use android_logger::{Config,FilterBuilder}; fn native_activity_create() { android_logger::init_once( Config::default() .with_max_level(LevelFilter::Trace) // limit log level .with_tag("mytag") // logs will show under mytag tag .with_filter( // configure messages for specific crate FilterBuilder::new() .parse("debug,hello::crate=error") .build()) ); trace!("this is a verbose {}", "message"); error!("this is printed by default"); }
To allow all logs, use the default configuration with min level Trace:
#[macro_use] extern crate log; extern crate android_logger; use log::LevelFilter; use android_logger::Config; fn native_activity_create() { android_logger::init_once( Config::default().with_max_level(LevelFilter::Trace), ); }
There is a caveat that this library can only be initialized once (hence the init_once
function name). However, Android native activity can be re-created every time the screen is rotated, resulting in multiple initialization calls. Therefore this library will only log a warning for subsequent init_once
calls.
This library ensures that logged messages do not overflow Android log message limits by efficiently splitting messages into chunks.
Licensed under either of
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.