1 2 3 4 5
use super::{Logger, LoggerOptions}; pub fn create_logger(options: Option<LoggerOptions>) -> Logger { Logger::new(options) }