use crate::output::output::OutputLevel;
use super::output::Output;
pub struct PlainOutput;
impl Output for PlainOutput {
fn level(&self) -> OutputLevel {
OutputLevel::Plain
}
fn error(&self, _msg: &str) {}
fn warning(&self, _msg: &str) {}
fn info(&self, _msg: &str) {}
fn success(&self, msg: &str) {
println!("{}", msg);
}
fn debug(&self, _msg: &str) {}
fn trace(&self, _msg: &str) {}
fn progress(&self, _msg: &str) {}
}