winston 0.1.1

winston for rust
Documentation
1
2
3
4
5
use super::{Logger, LoggerOptions};

pub fn create_logger(options: Option<LoggerOptions>) -> Logger {
    Logger::new(options)
}