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.
This commit is contained in:
jp9000 2015-03-22 19:15:33 -07:00
parent ebee67097a
commit 716ef61cf9

View File

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