Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jeikabu/esp_idf_logger
https://github.com/jeikabu/esp_idf_logger
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/jeikabu/esp_idf_logger
- Owner: jeikabu
- Created: 2020-04-19T15:43:32.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-06-07T15:00:53.000Z (over 2 years ago)
- Last Synced: 2024-10-01T15:44:52.909Z (about 2 months ago)
- Language: Rust
- Size: 3.91 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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");
```