client: print errors and warnings to stderr
All checks were successful
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

View File

@@ -32,8 +32,8 @@ pub fn print_create_users_output_status(output: &CreateUsersResponse) {
println!("User '{}' created successfully.", username);
}
Err(err) => {
println!("{}", err.to_error_message(username));
println!("Skipping...");
eprintln!("{}", err.to_error_message(username));
eprintln!("Skipping...");
}
}
println!();