From 0afc676d646755024996c457fd9efd8f466d911c Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Fri, 21 May 2021 14:33:05 +0100 Subject: [PATCH] otter(1): Suppress a message if --quiet Signed-off-by: Ian Jackson --- src/bin/otter.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/bin/otter.rs b/src/bin/otter.rs index 518fb047..58bf80d8 100644 --- a/src/bin/otter.rs +++ b/src/bin/otter.rs @@ -832,7 +832,9 @@ mod reset_game { } }).find_map(Result::err).map_or_else(|| Ok(()), Err) { Ok(()) => { - eprintln!("Reusing server's existing bundles"); + if ma.verbose >= 0 { + eprintln!("Reusing server's existing bundles"); + } }, Err(why) => { if ma.verbose >= 0 { -- 2.30.2