syslog_tracing/
lib.rs

1//! `syslog` logging support for `tracing` backed by `libc`'s
2//! [`syslog()`](libc::syslog) function.
3//!
4//! See [`Syslog`] for documentation and examples.
5
6#[cfg(unix)]
7mod syslog;
8#[cfg(unix)]
9pub use syslog::*;