Macro logfather::error

source ·
macro_rules! error {
    ($message:expr) => { ... };
}
Expand description

Logs an error message.

Example

use logfather::*;

error!("This is an error message");

Use this macro for logging errors, typically when an operation fails or an unexpected condition occurs.