cli helpers: change default log level to warn

This commit is contained in:
Joakim Frostegård 2022-04-06 18:55:13 +02:00
parent 745a85f71d
commit b677a104d3

View file

@ -22,7 +22,7 @@ pub enum LogLevel {
impl Default for LogLevel {
fn default() -> Self {
Self::Error
Self::Warn
}
}