client: print errors and warnings to stderr
Build and test / check (push) Successful in 1m55s
Build and test / build (push) Successful in 2m37s
Build and test / check-license (push) Successful in 1m3s
Build and test / test (push) Successful in 3m6s
Build and test / docs (push) Successful in 5m56s

This commit is contained in:
2025-12-16 17:20:04 +09:00
parent 043a1a7a7a
commit 10ef171c91
13 changed files with 24 additions and 19 deletions
+2 -2
View File
@@ -35,8 +35,8 @@ pub fn print_drop_databases_output_status(output: &DropDatabasesResponse) {
);
}
Err(err) => {
println!("{}", err.to_error_message(database_name));
println!("Skipping...");
eprintln!("{}", err.to_error_message(database_name));
eprintln!("Skipping...");
}
}
println!();