//! Steps that record values using the [`log`] crate.
//!
//! Each step logs the received value through the `log` facade and forwards it
//! unchanged to the next step. They are available only when the `logging`
//! feature is enabled. Output level and formatting are configured via
//! [`LogConfig`].
pub use ErrLogTapStep;
pub use LogConfig;
pub use OkLogTapStep;
pub use ResultLogTapBothStep;
pub use ResultLogTapStep;