Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | 03-May-2022 | - | ||||
.cargo-checksum.json | H A D | 03-May-2022 | 89 | 1 | 1 | |
.cargo_vcs_info.json | H A D | 01-Jan-1970 | 74 | 6 | 5 | |
.editorconfig | H A D | 01-Jan-1970 | 73 | 7 | 5 | |
.gitignore | H A D | 01-Jan-1970 | 49 | 6 | 5 | |
.rustfmt.toml | H A D | 01-Jan-1970 | 38 | 3 | 2 | |
.travis.yml | H A D | 01-Jan-1970 | 521 | 26 | 22 | |
.vimrc | H A D | 01-Jan-1970 | 119 | 4 | 2 | |
CHANGELOG.md | H A D | 01-Jan-1970 | 1.6 KiB | 74 | 46 | |
Cargo.toml | H A D | 01-Jan-1970 | 1.3 KiB | 46 | 39 | |
Cargo.toml.orig-cargo | H A D | 01-Jan-1970 | 734 | 30 | 25 | |
LICENSE-APACHE | H A D | 01-Jan-1970 | 10.6 KiB | 202 | 169 | |
LICENSE-MIT | H A D | 01-Jan-1970 | 1 KiB | 26 | 22 | |
LICENSE-MPL2 | H A D | 01-Jan-1970 | 16.3 KiB | 374 | 293 | |
Makefile | H A D | 01-Jan-1970 | 1.5 KiB | 69 | 53 | |
README.md | H A D | 01-Jan-1970 | 1.2 KiB | 32 | 23 | |
build.rs | H A D | 01-Jan-1970 | 1.4 KiB | 54 | 37 | |
lib.rs | H A D | 01-Jan-1970 | 25.4 KiB | 856 | 594 |
README.md
1# slog-async - Asynchronous drain for [slog-rs][slog-rs] 2 3<p align="center"> 4 <a href="https://travis-ci.org/slog-rs/async"> 5 <img src="https://img.shields.io/travis/slog-rs/async/master.svg" alt="Travis CI Build Status"> 6 </a> 7 8 <a href="https://crates.io/crates/slog-async"> 9 <img src="https://img.shields.io/crates/d/slog-async.svg" alt="slog-async on crates.io"> 10 </a> 11 12 <a href="https://gitter.im/dpc/slog-async"> 13 <img src="https://img.shields.io/gitter/room/dpc/slog-rs.svg" alt="slog-rs Gitter Chat"> 14 </a> 15 16 <a href="https://deps.rs/repo/github/slog-rs/async"> 17 <img src="https://deps.rs/repo/github/slog-rs/async/status.svg" alt="slog-rs Dependency Status"> 18 </a> 19</p> 20 21For more information, help, to report issues etc. see [slog-rs][slog-rs]. 22 23Note: Unlike other logging solutions `slog-rs` does not have a hardcoded async 24logging implementation. This crate is just a reasonable reference 25implementation. It should have good performance and work well in most use 26cases. See documentation and implementation for more details. 27 28It's relatively easy to implement custom `slog-rs` async logging. Feel free to 29use this one as a starting point. 30 31[slog-rs]: //github.com/slog-rs/slog 32