Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: improve logs in daemon/server #86

Merged
merged 1 commit into from
Mar 8, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 10 additions & 6 deletions src/daemon.rs
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,8 @@ async fn main() -> Result<(), Box<dyn std::error::Error>> {
for (pid, process) in sys.processes() {
if pid.to_string() == swhkd_pid && process.exe() == env::current_exe().unwrap() {
log::error!("Swhkd is already running!");
log::error!("pid of existing swhkd process: {}", pid.to_string());
log::error!("To close the existing swhkd process, run `sudo killall swhkd`");
exit(1);
}
}
Expand Down Expand Up @@ -209,7 +211,9 @@ async fn main() -> Result<(), Box<dyn std::error::Error>> {
for mut device in evdev::enumerate().filter(check_device_is_keyboard) {
let _ = device.ungrab();
}
log::warn!("Got signal: {:#?}", signal);

log::warn!("Received signal: {:#?}", signal);
log::warn!("Exiting...");
exit(1);
}
}
Expand Down Expand Up @@ -306,9 +310,9 @@ fn sock_send(command: &str) -> std::io::Result<()> {
fn send_command(hotkey: config::Hotkey) {
log::info!("Hotkey pressed: {:#?}", hotkey);
if let Err(e) = sock_send(&hotkey.command) {
log::error!("Failed to send command over IPC.");
log::error!("Is swhks running?");
log::error!("{:#?}", e)
log::error!("Failed to send command to swhks through IPC.");
log::error!("Please make sure that swhks is running.");
log::error!("Err: {:#?}", e)
}
}

Expand Down Expand Up @@ -337,10 +341,10 @@ pub fn check_device_is_keyboard(device: &Device) -> bool {
if device.name() == Some("swhkd virtual output") {
return false;
}
log::debug!("{} is a keyboard.", device.name().unwrap(),);
log::debug!("Keyboard: {}", device.name().unwrap(),);
true
} else {
log::trace!("{} is not a keyboard.", device.name().unwrap(),);
log::trace!("Other: {}", device.name().unwrap(),);
false
}
}
Expand Down