diff options
Diffstat (limited to 'karld/src/interface/tcp.rs')
-rw-r--r-- | karld/src/interface/tcp.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/karld/src/interface/tcp.rs b/karld/src/interface/tcp.rs index 2225f4a..296701b 100644 --- a/karld/src/interface/tcp.rs +++ b/karld/src/interface/tcp.rs @@ -6,6 +6,7 @@ use std::net::TcpListener; use std::thread; pub fn run() { + info!("binding to socket"); let listener = TcpListener::bind(tcp_addr()).unwrap(); info!("listening."); |