Add patch for LICENSE and make Cargo.toml match the crate archive.

Bug: http://b/339424309
Test: treehugger
Change-Id: I4bdd8fb0d3c43d97cd87a183e73390791a6f8cb4
2 files changed
tree: 315ddb0cd659c207b7efd860c3ec4ef69d095cd9
  1. patches/
  2. src/
  3. Android.bp
  4. Cargo.toml
  5. cargo_embargo.json
  6. LICENSE
  7. METADATA
  8. MODULE_LICENSE_MIT
  9. OWNERS
  10. README.md
  11. TEST_MAPPING
README.md

Kernel logger for Rust

Logger implementation for low level kernel log (using /dev/kmsg)

Usually intended for low level implementations, like systemd generators, which have to use /dev/kmsg:

Since syslog is not available (see above) write log messages to /dev/kmsg instead.

Full documentation.

Usage

[dependencies]
log = "0.4"
kernlog = "0.3"
#[macro_use]
extern crate log;
extern crate kernlog;

fn main() {
    kernlog::init().unwrap();
    warn!("something strange happened");
}

Note you have to have permissions to write to /dev/kmsg, which normal users (not root) usually don't.