tracing-oslog 0.1.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
#![deny(clippy::complexity, clippy::correctness, clippy::perf, clippy::style)]
cfg_if::cfg_if! {
	if #[cfg(target_vendor = "apple")] {
		mod ffi;
		mod logger;
		mod visitor;
		pub use logger::*;
	} else {
		mod stub;
		pub use stub::*;
	}
}