//! Error logging to stderr.
//!
//! Single responsibility: write error-related output to stderr so all error I/O
//! goes through one place. Callers compose the message or pass a `dyn Error` for
//! error-chain logging; this module does not depend on socket, os, or target.
use Error;
use ;
/// Writes `message` to stderr. Used by callers that format their own message (e.g. detection errors).
pub
/// Logs the error's `Display` and, if present, its `source()` chain to stderr.
pub