diff options
Diffstat (limited to 'ext/net')
-rw-r--r-- | ext/net/ops.rs | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/ext/net/ops.rs b/ext/net/ops.rs index 158f25515..52e513f71 100644 --- a/ext/net/ops.rs +++ b/ext/net/ops.rs @@ -518,11 +518,7 @@ where } else { net_unix::listen_unix_packet(state, address_path)? }; - debug!( - "New listener {} {}", - rid, - local_addr.as_pathname().unwrap().display(), - ); + debug!("New listener {} {:?}", rid, local_addr); let unix_addr = net_unix::UnixAddr { path: local_addr.as_pathname().and_then(net_unix::pathstring), }; |