//! Log output sinks.
//!
//! Sinks are destinations where formatted log messages are written.
//! Multiple sinks can be active simultaneously to send logs to
//! different destinations.
use crateFormat;
use Record;
/// Trait for log output destinations.
///
/// A sink receives formatted log records and writes them to their
/// underlying destination (console, file, network, etc.).