dtlsconnection: Lower BIO error log level to DEBUG
authorJan Alexander Steffens (heftig) <jsteffens@make.tv>
Mon, 5 Nov 2018 11:26:26 +0000 (12:26 +0100)
committerSebastian Dröge <slomo@coaxion.net>
Tue, 6 Nov 2018 16:23:50 +0000 (16:23 +0000)
Periodic SSL_ERROR_SYSCALL errors with errno == 0 seem to be normal
behavior for DTLS connections.

Fixes https://gitlab.freedesktop.org/gstreamer/gst-plugins-bad/issues/677

ext/dtls/gstdtlsconnection.c

index 88a3270..6b47460 100644 (file)
@@ -733,7 +733,7 @@ openssl_poll (GstDtlsConnection * self)
     if (ret == 0) {
       GST_DEBUG_OBJECT (self, "do_handshake encountered EOF");
     } else if (ret == -1) {
-      GST_WARNING_OBJECT (self, "do_handshake encountered BIO error");
+      GST_DEBUG_OBJECT (self, "do_handshake encountered BIO error");
     } else {
       GST_DEBUG_OBJECT (self, "do_handshake returned %d", ret);
     }