Trait rbatis::plugin::log::LogPlugin[][src]

pub trait LogPlugin: Send + Sync + Debug {
    fn get_level_filter(&self) -> &LevelFilter;

    fn name(&self) -> &str { ... }
fn is_enable(&self) -> bool { ... }
fn do_log(&self, id: i64, data: &str) { ... }
fn error(&self, id: i64, data: &str) { ... }
fn warn(&self, id: i64, data: &str) { ... }
fn info(&self, id: i64, data: &str) { ... }
fn debug(&self, id: i64, data: &str) { ... }
fn trace(&self, id: i64, data: &str) { ... } }
Expand description

log plugin

Required methods

Provided methods

the name

Implementors