Skip to main content

extract_log_info

Macro extract_log_info 

Source
macro_rules! extract_log_info {
    ($msg:expr) => { ... };
    ($fmt:expr, $($arg:tt)*) => { ... };
}
Expand description

Log an INFO level message.

Only logs when the configured log level is Info or more verbose. Compiled out entirely when logging feature is disabled.

§Examples

extract_log_info!("Starting text extraction from 5 pages");
extract_log_info!("Processing page {}/{}", 1, 5);