Don't print level and time for list-sellers

This is now consistent with the `buy-xmr` command.
This commit is contained in:
Thomas Eizinger 2021-07-07 13:32:13 +10:00 committed by Daniel Karzel
parent 40eccd089f
commit 09f395a26b
No known key found for this signature in database
GPG Key ID: 30C3FC2E438ADB6E

View File

@ -55,7 +55,8 @@ pub fn init(debug: bool, json: bool, dir: impl AsRef<Path>, swap_id: Option<Uuid
.with_env_filter(format!("swap={}", level)) .with_env_filter(format!("swap={}", level))
.with_writer(std::io::stderr) .with_writer(std::io::stderr)
.with_ansi(is_terminal) .with_ansi(is_terminal)
.with_timer(ChronoLocal::with_format("%F %T".to_owned())) .with_level(false)
.without_time()
.with_target(false) .with_target(false)
.init(); .init();