fast-logger 0.2.0

Fast logger for Rust
Documentation

build status Latest version Documentation

Fast logger

Fast-logger is a logger for Rust that attempts to be the fastest (with the lowest caller-latency time) logger for rust. It achieves this by not performing dynamic allocations and passing formatting data over a channel to another thread. The reason for doing this is that formatting itself is an expensive operation.