[vlc-commits] youtube.lua: silence debug log when detecting scrambled signature
Pierre Ynard
git at videolan.org
Wed Sep 18 07:20:33 CEST 2019
vlc/vlc-3.0 | branch: master | Pierre Ynard <linkfanel at yahoo.fr> | Thu Sep 12 07:20:31 2019 +0200| [f25d3ba368fa2daad34171ad14a42efd6c672ba1] | committer: Pierre Ynard
youtube.lua: silence debug log when detecting scrambled signature
The severity was mistakenly changed, this should have remained a debug
log all along
(cherry picked from commit 03b59d3498a872bf99ac763ab5f9417d00349785)
Signed-off-by: Pierre Ynard <linkfanel at yahoo.fr>
> http://git.videolan.org/gitweb.cgi/vlc/vlc-3.0.git/?a=commit;h=f25d3ba368fa2daad34171ad14a42efd6c672ba1
---
share/lua/playlist/youtube.lua | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/share/lua/playlist/youtube.lua b/share/lua/playlist/youtube.lua
index 41a4482873..e3c625451b 100644
--- a/share/lua/playlist/youtube.lua
+++ b/share/lua/playlist/youtube.lua
@@ -205,7 +205,7 @@ function pick_url( url_map, fmt, js_url )
local s = string.match( stream, "s=([^&,]+)" )
if s then
s = vlc.strings.decode_uri( s )
- vlc.msg.err( "Found "..string.len( s ).."-character scrambled signature for youtube video URL, attempting to descramble... " )
+ vlc.msg.dbg( "Found "..string.len( s ).."-character scrambled signature for youtube video URL, attempting to descramble... " )
if js_url then
s = js_descramble( s, js_url )
else
More information about the vlc-commits
mailing list