From 761e818923d9ebbbcb5a3ac3d65002fc537424b8 Mon Sep 17 00:00:00 2001 From: "Petr Savichev (proton)" Date: Wed, 13 Mar 2024 16:43:39 -0500 Subject: [PATCH] debug vide errors --- components/VideoNode.brs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/components/VideoNode.brs b/components/VideoNode.brs index 5e59a04..22e6cfe 100644 --- a/components/VideoNode.brs +++ b/components/VideoNode.brs @@ -52,6 +52,11 @@ sub stateChanged() if m.video.state <> "error" and m.video.state <> "buffering" timerFired() end if + + if m.video.state = "error" + print "VideoNode:StateChanged: Error" + print m.video.errorStr + end if end if end sub