diff options
Diffstat (limited to 'src/socket_wrapper.c')
| -rw-r--r-- | src/socket_wrapper.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/socket_wrapper.c b/src/socket_wrapper.c index ae3b2b0..e02f083 100644 --- a/src/socket_wrapper.c +++ b/src/socket_wrapper.c @@ -3161,9 +3161,10 @@ static int swrap_socket(int family, int type, int protocol) } SWRAP_LOG(SWRAP_LOG_TRACE, - "Created %s socket for protocol %s", + "Created %s socket for protocol %s, fd=%d", family == AF_INET ? "IPv4" : "IPv6", - real_type == SOCK_DGRAM ? "UDP" : "TCP"); + real_type == SOCK_DGRAM ? "UDP" : "TCP", + fd); return fd; } |
