Kaynağa Gözat

decklink: Don't use error log if not supported

Using LOG_ERROR here isn't really necessary, it just means that there's
no blackmagic support.
jp9000 10 yıl önce
ebeveyn
işleme
716ef61cf9

+ 1 - 1
plugins/decklink/decklink-device-discovery.cpp

@@ -7,7 +7,7 @@ DeckLinkDeviceDiscovery::DeckLinkDeviceDiscovery()
 {
 	discovery = CreateDeckLinkDiscoveryInstance();
 	if (discovery == nullptr)
-		blog(LOG_ERROR, "Failed to create IDeckLinkDiscovery");
+		blog(LOG_INFO, "No blackmagic support");
 }
 
 DeckLinkDeviceDiscovery::~DeckLinkDeviceDiscovery(void)