1#![doc = include_str!("../README.md")]
2
3#[cfg(target_vendor = "apple")]
15mod macos;
16#[cfg(target_vendor = "apple")]
17pub use macos::OsLogLayer;
18
19#[cfg(target_os = "linux")]
20mod linux;
21#[cfg(target_os = "linux")]
22pub use linux::OsLogLayer;
23
24#[cfg(target_os = "windows")]
25mod windows;
26#[cfg(target_os = "windows")]
27pub use windows::OsLogLayer;
28
29#[cfg(not(any(target_vendor = "apple", target_os = "linux", target_os = "windows")))]
30mod stub;
31#[cfg(not(any(target_vendor = "apple", target_os = "linux", target_os = "windows")))]
32pub use stub::OsLogLayer;