vlc | branch: master | Pierre Ynard <[email protected]> | Thu Sep 12 07:20:31 2019 +0200| [03b59d3498a872bf99ac763ab5f9417d00349785] | 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 > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=03b59d3498a872bf99ac763ab5f9417d00349785 --- 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 _______________________________________________ vlc-commits mailing list [email protected] https://mailman.videolan.org/listinfo/vlc-commits
