use stderr instead of stdout

This commit is contained in:
Silas Bartha 2023-11-11 13:16:08 -05:00
parent b51bcae2a9
commit 9b39e6485b
3 changed files with 4 additions and 4 deletions

2
Cargo.lock generated
View File

@ -841,7 +841,7 @@ dependencies = [
[[package]] [[package]]
name = "pomc" name = "pomc"
version = "0.1.0" version = "1.1.0"
dependencies = [ dependencies = [
"async-std", "async-std",
"clap", "clap",

View File

@ -1,6 +1,6 @@
[package] [package]
name = "pomc" name = "pomc"
version = "1.1.0" version = "1.1.1"
edition = "2021" edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

View File

@ -39,8 +39,8 @@ async fn main() {
Ok(()) => std::process::exit(0), Ok(()) => std::process::exit(0),
Err(e) => { Err(e) => {
match e { match e {
fdo::Error::ServiceUnknown(_) => println!("Error: Failed to find pomd dbus interface, is pomd running?"), fdo::Error::ServiceUnknown(_) => eprintln!("Error: Failed to find pomd dbus interface, is pomd running?"),
_ => println!("Error calling pomd command: {}", e) _ => eprintln!("Error calling pomd command: {}", e)
} }
std::process::exit(1) std::process::exit(1)
} }