summaryrefslogtreecommitdiffstats
path: root/src/error.rs
blob: 3501feec6ba7be25925afe5997bc99f2ef3b98f3 (plain)
1
2
3
pub fn print_error(msg: impl Into<String>) {
    eprintln!("[fd error]: {}", msg.into());
}