Function init_log_with_plugin

Source
pub fn init_log_with_plugin<P>(
    level: LevelFilter,
    log_file: String,
    log_file_max: u32,
    use_console: bool,
    use_async: bool,
    plugin: P,
) -> Result<(), Box<dyn Error + Send + Sync>>
where P: Write + Send + Sync + 'static,