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

pub trait LogPlugin: Send + Sync + Debug {
    pub fn get_level_filter(&self) -> &LevelFilter;
pub fn error(&self, data: &str);
pub fn warn(&self, data: &str);
pub fn info(&self, data: &str);
pub fn debug(&self, data: &str);
pub fn trace(&self, data: &str); pub fn name(&self) -> &str { ... }
pub fn is_enable(&self) -> bool { ... }
pub fn do_log(&self, data: &str) { ... } }

log plugin

Required methods

pub fn get_level_filter(&self) -> &LevelFilter[src]

pub fn error(&self, data: &str)[src]

pub fn warn(&self, data: &str)[src]

pub fn info(&self, data: &str)[src]

pub fn debug(&self, data: &str)[src]

pub fn trace(&self, data: &str)[src]

Loading content...

Provided methods

pub fn name(&self) -> &str[src]

the name

pub fn is_enable(&self) -> bool[src]

pub fn do_log(&self, data: &str)[src]

Loading content...

Implementors

impl LogPlugin for RbatisLog[src]

Loading content...