commit | 5c4ac127798cbf00100964a11e7b2206d976a0b2 | [log] [tgz] |
---|---|---|
author | Jeff Vander Stoep <[email protected]> | Thu Feb 02 09:56:16 2023 +0100 |
committer | Jeff Vander Stoep <[email protected]> | Thu Feb 02 09:56:46 2023 +0100 |
tree | 302ce0eff262fd39a93c2202fefd000cf8e110a1 | |
parent | 4ab128de3299643fe6f80ad9711acdd8b8496c91 [diff] |
Revert "Update from 0.11.1 to 0.11.3" This reverts commit 0af555c01fe29c05d1cf29712bfc73b15f7938cf. Test: logging works Change-Id: I18c5f1c4f0afab15cac98b7c5078a2cfcff05d53
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::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.