Crates.io | fast-logger |
lib.rs | fast-logger |
version | 0.7.1 |
source | src |
created_at | 2019-05-31 17:06:34.5424 |
updated_at | 2023-06-08 06:45:04.211963 |
description | Fast logger for Rust |
homepage | https://github.com/kstrafe/fast-logger |
repository | https://github.com/kstrafe/fast-logger |
max_upload_size | |
id | 138187 |
size | 79,983 |
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.