logforth-append-async 0.4.0

Asynchronous appender for Logforth.
Documentation

Async Appender

This appender is a remix of spdlog-rs's AsyncPoolSink, with several modifications to fit this crate's need:

  • Instead of a thread pool, it uses a single background thread to drain the log queue.
  • flush will block until all pending log messages are processed. This avoids the need of Append::exit we once added.