Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/jeikabu/esp_idf_logger


https://github.com/jeikabu/esp_idf_logger

Last synced: about 1 month ago
JSON representation

Awesome Lists containing this project

README

        

[log](https://crates.io/crates/log) implementation for platforms that use ESP-IDF (like ESP32).

`Cargo.toml`:
```toml
[dependencies]
esp_idf_logger = "0.1"
log = "0.4"
```

Usage:
```rust
esp_idf_logger::init().unwrap();
log::info!("Log stuff={} and={}", 1, "hi");
```