async icon indicating copy to clipboard operation
async copied to clipboard

Asynchronous drain for slog-rs v2

Results 9 async issues
Sort by recently updated
recently updated
newest added

See https://github.com/slog-rs/slog/pull/332

How can I instruct the `log = create_logger_cli(false)` to be flushed manually (I have a password prompt on stdout which should first flush the whole log such that the prompt...

I had a problem: slog_async had been freezing execution of my windows dll because it had been getting stuck waiting for thread to finish with `join()` (even though the thread...

Reproducer: ```toml [dependencies] erased-serde = "0.3" serde = "1.0" slog = { version = "2.7", features = ["nested-values"] } slog-async = "2.8" slog-term = "2.9" ``` ```rust use serde::Serialize; use...

We're exploring options in the logging space. I was curious how amenable you folks would be to using std::sync::mpsc::sync_channel in favor of crossbeam?

Replace `crossbeam-channel` by [flume](https://github.com/zesterer/flume), which is coming with some advantages, see https://github.com/zesterer/flume#why-flume.

With futures and async coming into the rust standard library, proper, perhaps slog-async should grow some support for a `Future` to act as the other end of a `Drain`? This...

Sends a message to the logging thread, then blocks until the logger acknowledges it. Contrast this to the busy-loop approach in #36 Pinned to the branch used in PR slog-rs/slog#349,...

- Run rustfmt on tests - Bump MSRV to 1.61 - Unconditionally support i128 on all versions - Update to Rust 2018 and fix clippy lints - Improve CI: -...