diff --git a/sys/decklink/gstdecklink.cpp b/sys/decklink/gstdecklink.cpp index 82fc8005da..d535c56ea1 100644 --- a/sys/decklink/gstdecklink.cpp +++ b/sys/decklink/gstdecklink.cpp @@ -1367,7 +1367,7 @@ init_devices (gpointer data) iterator = CreateDeckLinkIteratorInstance (); if (iterator == NULL) { - GST_ERROR ("no driver"); + GST_DEBUG ("no driver"); return NULL; } diff --git a/sys/decklink/linux/DeckLinkAPIDispatch.cpp b/sys/decklink/linux/DeckLinkAPIDispatch.cpp index d285337de2..d9a47e3f1c 100644 --- a/sys/decklink/linux/DeckLinkAPIDispatch.cpp +++ b/sys/decklink/linux/DeckLinkAPIDispatch.cpp @@ -58,7 +58,10 @@ static void InitDeckLinkAPI (void) libraryHandle = dlopen(kDeckLinkAPI_Name, RTLD_NOW|RTLD_GLOBAL); if (!libraryHandle) { - fprintf(stderr, "%s\n", dlerror()); + /* As we install this plugin regardless if there is a + * proprietary library present or not, let's stay silent + * to avoid poluting the logs */ + // fprintf(stderr, "%s\n", dlerror()); return; }