swrap: Add a trace message for swrap_socket().
[samba.git] / lib / socket_wrapper / socket_wrapper.c
index 8a7b57243fcbe0e5093af110246568b78bc7d14a..6a495b95029ddd0211ce2af4417adca6ea4aafd0 100644 (file)
@@ -2430,6 +2430,11 @@ static int swrap_socket(int family, int type, int protocol)
        SWRAP_DLIST_ADD(si->fds, fi);
        SWRAP_DLIST_ADD(sockets, si);
 
+       SWRAP_LOG(SWRAP_LOG_TRACE,
+                 "Created %s socket for protocol %s",
+                 si->family == AF_INET ? "IPv4" : "IPv6",
+                 si->type == SOCK_DGRAM ? "UDP" : "TCP");
+
        return fd;
 }