[all (rust)] Keep silent if --quiet was applied

This commit is contained in:
Ming-Hung Tsai 2021-09-10 15:45:50 +08:00
parent d436f35ed3
commit 66c1d629a4
8 changed files with 15 additions and 15 deletions

View File

@ -93,11 +93,11 @@ fn main() {
skip_discards: matches.is_present("SKIP_DISCARDS"), skip_discards: matches.is_present("SKIP_DISCARDS"),
ignore_non_fatal: matches.is_present("IGNORE_NON_FATAL"), ignore_non_fatal: matches.is_present("IGNORE_NON_FATAL"),
auto_repair: matches.is_present("AUTO_REPAIR"), auto_repair: matches.is_present("AUTO_REPAIR"),
report, report: report.clone(),
}; };
if let Err(reason) = check(opts) { if let Err(reason) = check(opts) {
eprintln!("{}", reason); report.fatal(&format!("{}", reason));
process::exit(1); process::exit(1);
} }
} }

View File

@ -68,11 +68,11 @@ fn main() {
input: &input_file, input: &input_file,
output: &output_file, output: &output_file,
async_io: matches.is_present("ASYNC_IO"), async_io: matches.is_present("ASYNC_IO"),
report, report: report.clone(),
}; };
if let Err(reason) = repair(opts) { if let Err(reason) = repair(opts) {
eprintln!("{}", reason); report.fatal(&format!("{}", reason));
process::exit(1); process::exit(1);
} }
} }

View File

@ -73,11 +73,11 @@ fn main() {
input: &input_file, input: &input_file,
output: &output_file, output: &output_file,
async_io: matches.is_present("ASYNC_IO"), async_io: matches.is_present("ASYNC_IO"),
report, report: report.clone(),
}; };
if let Err(reason) = restore(opts) { if let Err(reason) = restore(opts) {
eprintln!("{}", reason); report.fatal(&format!("{}", reason));
process::exit(1); process::exit(1);
} }
} }

View File

@ -131,11 +131,11 @@ fn main() {
ignore_non_fatal: matches.is_present("IGNORE_NON_FATAL"), ignore_non_fatal: matches.is_present("IGNORE_NON_FATAL"),
auto_repair: matches.is_present("AUTO_REPAIR"), auto_repair: matches.is_present("AUTO_REPAIR"),
clear_needs_check: matches.is_present("CLEAR_NEEDS_CHECK"), clear_needs_check: matches.is_present("CLEAR_NEEDS_CHECK"),
report, report: report.clone(),
}; };
if let Err(reason) = check(opts) { if let Err(reason) = check(opts) {
eprintln!("{}", reason); report.fatal(&format!("{}", reason));
process::exit(1); process::exit(1);
} }
} }

View File

@ -128,7 +128,7 @@ fn main() {
input: input_file, input: input_file,
output: output_file, output: output_file,
async_io: matches.is_present("ASYNC_IO"), async_io: matches.is_present("ASYNC_IO"),
report, report: report.clone(),
repair: matches.is_present("REPAIR"), repair: matches.is_present("REPAIR"),
overrides: SuperblockOverrides { overrides: SuperblockOverrides {
transaction_id, transaction_id,
@ -138,7 +138,7 @@ fn main() {
}; };
if let Err(reason) = dump(opts) { if let Err(reason) = dump(opts) {
eprintln!("{}", reason); report.fatal(&format!("{}", reason));
process::exit(1); process::exit(1);
} }
} }

View File

@ -108,7 +108,7 @@ fn main() {
input: &input_file, input: &input_file,
output: &output_file, output: &output_file,
async_io: matches.is_present("ASYNC_IO"), async_io: matches.is_present("ASYNC_IO"),
report, report: report.clone(),
overrides: SuperblockOverrides { overrides: SuperblockOverrides {
transaction_id, transaction_id,
data_block_size, data_block_size,
@ -117,7 +117,7 @@ fn main() {
}; };
if let Err(reason) = repair(opts) { if let Err(reason) = repair(opts) {
eprintln!("{}", reason); report.fatal(&format!("{}", reason));
process::exit(1); process::exit(1);
} }
} }

View File

@ -73,11 +73,11 @@ fn main() {
input: &input_file, input: &input_file,
output: &output_file, output: &output_file,
async_io: matches.is_present("ASYNC_IO"), async_io: matches.is_present("ASYNC_IO"),
report, report: report.clone(),
}; };
if let Err(reason) = restore(opts) { if let Err(reason) = restore(opts) {
eprintln!("{}", reason); report.fatal(&format!("{}", reason));
process::exit(1); process::exit(1);
} }
} }

View File

@ -74,7 +74,7 @@ fn main() {
if let Err(reason) = if let Err(reason) =
thinp::shrink::toplevel::shrink(&input_file, &output_file, &data_file, size, do_copy) thinp::shrink::toplevel::shrink(&input_file, &output_file, &data_file, size, do_copy)
{ {
println!("Application error: {}\n", reason); eprintln!("Application error: {}\n", reason);
exit(1); exit(1);
} }
} }