change log level to debug when monitor is not decoding

This commit is contained in:
Isaac Connor 2021-03-23 10:32:59 -04:00
parent 456afac0ec
commit 1bfc61a5b7
1 changed files with 1 additions and 1 deletions

View File

@ -73,7 +73,7 @@ bool StreamBase::checkInitialised() {
return false;
}
if ((monitor->GetType() == Monitor::FFMPEG) and !monitor->DecodingEnabled() ) {
Error("Monitor is not decoding.");
Debug(1, "Monitor is not decoding.");
return false;
}
return true;