ttlog 0.1.21

High-performance lock-free tracing and logging system
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
pub mod event;
pub mod event_builder;
pub mod file_listener;
pub mod kv;
pub mod lf_buffer;
pub mod listener;
pub mod panic_hook;
// signal_hook uses unix-only signal numbers (SIGBUS, SIGCHLD, etc).
// Windows has no equivalents; gate the module out there.
#[cfg(unix)]
pub mod signal_hook;
pub mod snapshot;
pub mod stdout_listener;
pub mod string_interner;
pub mod trace;
pub mod utils;

pub extern crate ttlog_macros;