camera: hide log msg that distracts from the real issue

This commit is contained in:
alfrix 2023-09-30 22:55:28 -03:00
parent edf390fe94
commit 1add7f5ef0

View File

@ -93,5 +93,5 @@ class Panel(ScreenPanel):
def log(self, loglevel, component, message):
logging.debug(f'[{loglevel}] {component}: {message}')
if loglevel == 'error' and 'No Xvideo support found' not in message:
if loglevel == 'error' and 'No Xvideo support found' not in message and 'youtube-dl' not in message:
self._screen.show_popup_message(f'{message}')