#logging #thread #initialization

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

#239 in Concurrency

Download history 58883/week @ 2024-12-14 24785/week @ 2024-12-21 30185/week @ 2024-12-28 56446/week @ 2025-01-04 81960/week @ 2025-01-11 66949/week @ 2025-01-18 61822/week @ 2025-01-25 69400/week @ 2025-02-01 69321/week @ 2025-02-08 70455/week @ 2025-02-15 64466/week @ 2025-02-22 67523/week @ 2025-03-01 66604/week @ 2025-03-08 65062/week @ 2025-03-15 69909/week @ 2025-03-22 51171/week @ 2025-03-29

261,680 downloads per month
Used in 202 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

~2.8–4MB
~70K SLoC