From: Ben Pfaff Date: Wed, 19 Mar 2008 16:52:04 +0000 (-0700) Subject: Change fatal errors in SSL connection from VLOG_DBG to VLOG_ERR. X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=800a2f4c03658b08bf797d06f2d9c22b84b8223b;p=openvswitch Change fatal errors in SSL connection from VLOG_DBG to VLOG_ERR. Suggested by Justin. --- diff --git a/lib/vconn-ssl.c b/lib/vconn-ssl.c index e243b3c9..2bd0db04 100644 --- a/lib/vconn-ssl.c +++ b/lib/vconn-ssl.c @@ -120,12 +120,12 @@ new_ssl_vconn(const char *name, int fd, enum session_type type, /* Create and configure OpenSSL stream. */ ssl = SSL_new(ctx); if (ssl == NULL) { - VLOG_DBG("SSL_new: %s", ERR_error_string(ERR_get_error(), NULL)); + VLOG_ERR("SSL_new: %s", ERR_error_string(ERR_get_error(), NULL)); close(fd); return ENOPROTOOPT; } if (SSL_set_fd(ssl, fd) == 0) { - VLOG_DBG("SSL_set_fd: %s", ERR_error_string(ERR_get_error(), NULL)); + VLOG_ERR("SSL_set_fd: %s", ERR_error_string(ERR_get_error(), NULL)); goto error; }