use stderr instead of stdout
This commit is contained in:
parent
b51bcae2a9
commit
9b39e6485b
2
Cargo.lock
generated
2
Cargo.lock
generated
@ -841,7 +841,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "pomc"
|
||||
version = "0.1.0"
|
||||
version = "1.1.0"
|
||||
dependencies = [
|
||||
"async-std",
|
||||
"clap",
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "pomc"
|
||||
version = "1.1.0"
|
||||
version = "1.1.1"
|
||||
edition = "2021"
|
||||
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
@ -39,8 +39,8 @@ async fn main() {
|
||||
Ok(()) => std::process::exit(0),
|
||||
Err(e) => {
|
||||
match e {
|
||||
fdo::Error::ServiceUnknown(_) => println!("Error: Failed to find pomd dbus interface, is pomd running?"),
|
||||
_ => println!("Error calling pomd command: {}", e)
|
||||
fdo::Error::ServiceUnknown(_) => eprintln!("Error: Failed to find pomd dbus interface, is pomd running?"),
|
||||
_ => eprintln!("Error calling pomd command: {}", e)
|
||||
}
|
||||
std::process::exit(1)
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user