commit | 98e263c53109c8a67289e9def1ef42f7ec5483bf | [log] [tgz] |
---|---|---|
author | Joel Galenson <[email protected]> | Tue Aug 24 18:23:52 2021 +0000 |
committer | Automerger Merge Worker <[email protected]> | Tue Aug 24 18:23:52 2021 +0000 |
tree | d63a6de84ad0e0febea5e70eec7da9ca4a625860 | |
parent | 0c8afc08c2d0b613438139ace48fa26d64fb86ca [diff] | |
parent | a3a0309ec2a8595ee946d291a6bead07b69507ef [diff] |
Update TEST_MAPPING am: a3a0309ec2 Original change: https://android-review.googlesource.com/c/platform/external/rust/crates/android_logger/+/1805912 Change-Id: I2146835fc008a97c0ea673c1382b57563794b689
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.10"
Example of initialization on activity creation, with log configuration:
#[macro_use] extern crate log; extern crate android_logger; use log::Level; use android_logger::{Config,FilterBuilder}; fn native_activity_create() { android_logger::init_once( Config::default() .with_min_level(Level::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::Level; use android_logger::Config; fn native_activity_create() { android_logger::init_once( Config::default().with_min_level(Level::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.