dtls: make sure we actually log into the right debug category
authorTim-Philipp Müller <tim@centricular.com>
Mon, 16 Mar 2015 17:49:58 +0000 (17:49 +0000)
committerTim-Philipp Müller <tim@centricular.com>
Mon, 16 Mar 2015 17:51:20 +0000 (17:51 +0000)
GST_DTLS_USE_GST_LOG is not defined anywhere, so
we'd just log into the default category by accident.
We use the gst logging system unconditionally now,
so might just as well remove this #if #else.

ext/dtls/gstdtlsagent.c
ext/dtls/gstdtlscertificate.c
ext/dtls/gstdtlsconnection.c

index b525058..837ef30 100644 (file)
 #include <openssl/err.h>
 #include <openssl/ssl.h>
 
-#if GST_DTLS_USE_GST_LOG
 GST_DEBUG_CATEGORY_STATIC (gst_dtls_agent_debug);
-#   define GST_CAT_DEFAULT gst_dtls_agent_debug
+#define GST_CAT_DEFAULT gst_dtls_agent_debug
+
 G_DEFINE_TYPE_WITH_CODE (GstDtlsAgent, gst_dtls_agent, G_TYPE_OBJECT,
     GST_DEBUG_CATEGORY_INIT (gst_dtls_agent_debug, "dtlsagent", 0,
         "DTLS Agent"));
-#else
-G_DEFINE_TYPE (GstDtlsAgent, gst_dtls_agent, G_TYPE_OBJECT);
-#endif
 
 #define GST_DTLS_AGENT_GET_PRIVATE(obj) (G_TYPE_INSTANCE_GET_PRIVATE((obj), GST_TYPE_DTLS_AGENT, GstDtlsAgentPrivate))
 
index 3d368f2..e37494f 100644 (file)
 
 #include <openssl/ssl.h>
 
-#if GST_DTLS_USE_GST_LOG
 GST_DEBUG_CATEGORY_STATIC (gst_dtls_certificate_debug);
-#   define GST_CAT_DEFAULT gst_dtls_certificate_debug
+#define GST_CAT_DEFAULT gst_dtls_certificate_debug
+
 G_DEFINE_TYPE_WITH_CODE (GstDtlsCertificate, gst_dtls_certificate,
     G_TYPE_OBJECT, GST_DEBUG_CATEGORY_INIT (gst_dtls_certificate_debug,
         "dtlscertificate", 0, "DTLS Certificate"));
-#else
-G_DEFINE_TYPE (GstDtlsCertificate, gst_dtls_certificate, G_TYPE_OBJECT);
-#endif
 
 #define GST_DTLS_CERTIFICATE_GET_PRIVATE(obj) (G_TYPE_INSTANCE_GET_PRIVATE((obj), GST_TYPE_DTLS_CERTIFICATE, GstDtlsCertificatePrivate))
 
index ffa9339..c84e9f2 100644 (file)
 #include <openssl/err.h>
 #include <openssl/ssl.h>
 
-#if GST_DTLS_USE_GST_LOG
 GST_DEBUG_CATEGORY_STATIC (gst_dtls_connection_debug);
-#   define GST_CAT_DEFAULT gst_dtls_connection_debug
+#define GST_CAT_DEFAULT gst_dtls_connection_debug
 G_DEFINE_TYPE_WITH_CODE (GstDtlsConnection, gst_dtls_connection, G_TYPE_OBJECT,
     GST_DEBUG_CATEGORY_INIT (gst_dtls_connection_debug, "dtlsconnection", 0,
         "DTLS Connection"));
-#else
-G_DEFINE_TYPE (GstDtlsConnection, gst_dtls_connection, G_TYPE_OBJECT);
-#endif
 
 #define GST_DTLS_CONNECTION_GET_PRIVATE(obj) (G_TYPE_INSTANCE_GET_PRIVATE((obj), GST_TYPE_DTLS_CONNECTION, GstDtlsConnectionPrivate))