goolog 0.11.0

This library provides the no_std-compatible goolog logger and some macros to simplify printing logs.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#![cfg_attr(not(feature = "std"), no_std)]
#![doc = include_str!("../README.md")]
#![warn(missing_docs)]
#![warn(clippy::unwrap_used)]
#![warn(unreachable_pub)]

pub extern crate log;

mod logger;
mod macros;

pub use logger::*;
pub use macros::on_fatal::*;