#android #log #logging #logger #bindings #api-bindings

android_logger

A logging implementation for log which hooks to android log output

33 releases

Uses old Rust 2015

0.13.3 Aug 1, 2023
0.13.1 Mar 7, 2023
0.11.3 Dec 20, 2022
0.11.1 Jul 22, 2022
0.2.2 Feb 28, 2016

#22 in Debugging

Download history 49690/week @ 2023-11-20 57630/week @ 2023-11-27 53025/week @ 2023-12-04 58228/week @ 2023-12-11 61877/week @ 2023-12-18 27133/week @ 2023-12-25 56523/week @ 2024-01-01 69423/week @ 2024-01-08 75917/week @ 2024-01-15 87550/week @ 2024-01-22 83296/week @ 2024-01-29 83868/week @ 2024-02-05 91692/week @ 2024-02-12 108113/week @ 2024-02-19 128128/week @ 2024-02-26 95426/week @ 2024-03-04

427,287 downloads per month
Used in 326 crates (41 directly)

MIT/Apache

28KB
495 lines

Send Rust logs to Logcat

Version CI status

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.

License

Licensed under either of

at your option.

Contribution

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.

Dependencies

~0.2–0.8MB
~14K SLoC