Change fatal errors in SSL connection from VLOG_DBG to VLOG_ERR.
authorBen Pfaff <blp@nicira.com>
Wed, 19 Mar 2008 16:52:04 +0000 (09:52 -0700)
committerBen Pfaff <blp@nicira.com>
Wed, 19 Mar 2008 16:52:04 +0000 (09:52 -0700)
Suggested by Justin.

lib/vconn-ssl.c

index e243b3c91f1d8ca473b511b5caa6a9950554798b..2bd0db04c1d162e0bef3ae88d36bfa18989ae90e 100644 (file)
@@ -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;
     }