diff --git a/bin/swhks b/bin/swhks index 825f42d..247753c 100755 Binary files a/bin/swhks and b/bin/swhks differ diff --git a/src/server.rs b/src/server.rs index 852eb75..594d117 100644 --- a/src/server.rs +++ b/src/server.rs @@ -50,7 +50,9 @@ fn main() -> Result<(), Box> { if Path::new(&sockfile).exists() { log::trace!("Sockfile exists, attempting to remove it."); match fs::remove_file(&sockfile) { - Ok(_) => {} + Ok(_) => { + log::debug!("Removed old socket file"); + } Err(e) => { log::error!("Error removeing the socket file!: {}", e); exit(1);