//! Wrappers around log macros.
//!
//! These allow logging within the crate without having to sprinkle `#[cfg(feature = "log")]` all
//! over the place.
// We rename this macro at export to avoid a conflict with a builtin attribute also named `warn`.
pub use _warn as warn;
pub use info;