Enum rdkafka::config::RDKafkaLogLevel
source · pub enum RDKafkaLogLevel {
Emerg,
Alert,
Critical,
Error,
Warning,
Notice,
Info,
Debug,
}
Expand description
The log levels supported by librdkafka.
Variants§
Emerg
Higher priority then Level::Error
from the log
crate.
Alert
Higher priority then Level::Error
from the log
crate.
Critical
Higher priority then Level::Error
from the log
crate.
Error
Equivalent to Level::Error
from the log crate.
Warning
Equivalent to Level::Warn
from the log crate.
Notice
Higher priority then Level::Info
from the log
crate.
Info
Equivalent to Level::Info
from the log crate.
Debug
Equivalent to Level::Debug
from the log crate.
Trait Implementations§
source§impl Clone for RDKafkaLogLevel
impl Clone for RDKafkaLogLevel
source§fn clone(&self) -> RDKafkaLogLevel
fn clone(&self) -> RDKafkaLogLevel
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more