Bläddra i källkod

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 år sedan
förälder
incheckning
716ef61cf9
1 ändrade filer med 1 tillägg och 1 borttagningar
  1. 1 1
      plugins/decklink/decklink-device-discovery.cpp

+ 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)