tracing-oslog 0.2.0

A layer for tracing that outputs to the oslog on macOS/iOS
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#![deny(
	clippy::complexity,
	clippy::correctness,
	clippy::perf,
	clippy::style,
	clippy::suspicious
)]
cfg_if::cfg_if! {
	if #[cfg(target_vendor = "apple")] {
		mod ffi;
		mod logger;
		mod visitor;
		pub use logger::*;
	} else {
		mod stub;
		pub use stub::*;
	}
}