• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

.cargo-checksum.jsonH A D03-May-202289 11

.cargo_vcs_info.jsonH A D01-Jan-197074 65

.editorconfigH A D01-Jan-197073 75

.gitignoreH A D01-Jan-197049 65

.rustfmt.tomlH A D01-Jan-197038 32

.travis.ymlH A D01-Jan-1970521 2622

.vimrcH A D01-Jan-1970119 42

CHANGELOG.mdH A D01-Jan-19701.6 KiB7446

Cargo.tomlH A D01-Jan-19701.3 KiB4639

Cargo.toml.orig-cargoH A D01-Jan-1970734 3025

LICENSE-APACHEH A D01-Jan-197010.6 KiB202169

LICENSE-MITH A D01-Jan-19701 KiB2622

LICENSE-MPL2H A D01-Jan-197016.3 KiB374293

MakefileH A D01-Jan-19701.5 KiB6953

README.mdH A D01-Jan-19701.2 KiB3223

build.rsH A D01-Jan-19701.4 KiB5437

lib.rsH A D01-Jan-197025.4 KiB856594

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