diff options
author | James Taylor <user234683@users.noreply.github.com> | 2021-08-27 19:55:54 -0700 |
---|---|---|
committer | Jesús <heckyel@hyperbola.info> | 2021-08-29 21:57:55 -0500 |
commit | 56b17c634ce629b6d84a4118de14b426cc7955ba (patch) | |
tree | c03a8638c02041f46998df5ea287425bffbe2cc0 /youtube/static | |
parent | dd01c8ca4c6a91df75ffa8e7531c7ca010a9a201 (diff) | |
download | yt-local-56b17c634ce629b6d84a4118de14b426cc7955ba.tar.lz yt-local-56b17c634ce629b6d84a4118de14b426cc7955ba.tar.xz yt-local-56b17c634ce629b6d84a4118de14b426cc7955ba.zip |
av-merge: Use console.warn and console.error
Signed-off-by: Jesús <heckyel@hyperbola.info>
Diffstat (limited to 'youtube/static')
-rw-r--r-- | youtube/static/js/av-merge.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/youtube/static/js/av-merge.js b/youtube/static/js/av-merge.js index 72bcd4c..3831bcc 100644 --- a/youtube/static/js/av-merge.js +++ b/youtube/static/js/av-merge.js @@ -411,10 +411,10 @@ function addEvent(obj, eventName, func) { } function reportWarning(...args){ - console.log(...args); + console.warn(...args); } function reportError(...args){ - console.log(...args); + console.error(...args); } function reportDebug(...args){ console.log(...args); |