2
0
mirror of https://github.com/openvswitch/ovs synced 2025-09-03 07:45:30 +00:00

stream-unix: Reduce connection failure log level from ERR to WARN.

Sometimes this just means that the daemon we're connecting to is
restarting.

Bug #13177.
Reported-by: Scott Hendricks <shendricks@nicira.com>
Signed-off-by: Ben Pfaff <blp@nicira.com>
This commit is contained in:
Ben Pfaff
2012-09-17 09:09:30 -07:00
parent 52440c192b
commit c146b2f86a

View 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_ERR("%s: connection failed (%s)", connect_path, strerror(-fd));
VLOG_WARN("%s: connection failed (%s)", connect_path, strerror(-fd));
return -fd;
}