#per-thread #logging #thread #log #logger #log-file

file-per-thread-logger

A logging implementation that writes logs in one file per thread

8 releases

0.2.0 Jun 2, 2023
0.1.6 Jan 5, 2023
0.1.5 Feb 5, 2022
0.1.4 Aug 20, 2020
0.1.0 Jul 30, 2018

#223 in Concurrency

Download history 64192/week @ 2024-11-18 62267/week @ 2024-11-25 62948/week @ 2024-12-02 67607/week @ 2024-12-09 57520/week @ 2024-12-16 23999/week @ 2024-12-23 31460/week @ 2024-12-30 58084/week @ 2025-01-06 83312/week @ 2025-01-13 67359/week @ 2025-01-20 59833/week @ 2025-01-27 70329/week @ 2025-02-03 71387/week @ 2025-02-10 68010/week @ 2025-02-17 63714/week @ 2025-02-24 63281/week @ 2025-03-03

270,342 downloads per month
Used in 203 crates (via wasmtime-cli-flags)

Apache-2.0 WITH LLVM-exception

11KB
124 lines

File per thread logger

This is a thread-safe logger that will write logs to files, each thread owning its own file.

Usage

Put this in your Cargo.toml:

[dependencies]
file-per-thread-logger = "0.1.2"

Then add this to your code, once per thread:

file_per_thread_logger::initialize("file_prefix-");

Then each use of log's primitive will log into files named the following way:

  • the main thread get a file that's suffixed after the program's name.
  • unnamed threads get a file suffixed with ThreadIdN where N is the thread's id number.
  • named threads get a file suffixed with the thread's name.

Dependencies

~3–4.5MB
~71K SLoC