ovs-ofctl: Don't rely on stat() to check unix sockets.
[openvswitch] / lib / stream-unix.c
index 4feefdfdfd4e8a6e31950d0697bfa340053ff6c4..6dee17d7b18d8aadc3628485eb8c3aa712f3b945 100644 (file)
@@ -48,7 +48,7 @@ unix_open(const char *name, char *suffix, struct stream **streamp,
 
     fd = make_unix_socket(SOCK_STREAM, true, NULL, connect_path);
     if (fd < 0) {
-        VLOG_WARN("%s: connection failed (%s)", connect_path, strerror(-fd));
+        VLOG_DBG("%s: connection failed (%s)", connect_path, strerror(-fd));
         return -fd;
     }