diff options
Diffstat (limited to 'karld/src/interface/unix.rs')
-rw-r--r-- | karld/src/interface/unix.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/karld/src/interface/unix.rs b/karld/src/interface/unix.rs index 350be4f..620ff64 100644 --- a/karld/src/interface/unix.rs +++ b/karld/src/interface/unix.rs @@ -10,6 +10,7 @@ pub fn run() { info!("remove old socket"); std::fs::remove_file(unix_path()).unwrap(); } + info!("binding to socket"); let listener = UnixListener::bind(unix_path()).unwrap(); info!("listening."); |