commit | 8cfcb2fa15c154a7fa7ce2632143ec4769ec90fd | [log] [tgz] |
---|---|---|
author | Android Build Coastguard Worker <[email protected]> | Thu Aug 15 01:09:17 2024 +0000 |
committer | Android Build Coastguard Worker <[email protected]> | Thu Aug 15 01:09:17 2024 +0000 |
tree | 7440281780bd5018947dad9076a43c767dbf77bc | |
parent | 809967103586dcf782bc406bcc1756fc4ab100fb [diff] | |
parent | a4c095561c891709ce999f044b9ed2777b509243 [diff] |
Snap for 12231105 from a4c095561c891709ce999f044b9ed2777b509243 to sdk-release Change-Id: I796e510380322ddcf1161e306173263523c5b1cd
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.13"
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.