We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
var dashPlayer = dashjs.MediaPlayer().create(); dashPlayer.getDebug().setLogToBrowserConsole(false);
In players built using latest dash js 'https://cdn.dashjs.org/latest/dash.mediaplayer.min.js'
Uncaught TypeError: t.getDebug(...).setLogToBrowserConsole is not a function at Object.initialiseDash (fluidplayer.min.js:1)
Like to know this API is change
The text was updated successfully, but these errors were encountered:
@bharath-exads, we deprecated setLogToBrowserConsole in dash.js v2.9.1 and has been finally removed in dash.js v3.0.0.
To do the same you should do:
dashPlayer.updateSettings({ 'debug': { 'logLevel': dashjs.Debug.LOG_LEVEL_NONE }});
Sorry, something went wrong.
...or revert your version of dashjs to v2.9.0
No branches or pull requests
Steps to reproduce
var dashPlayer = dashjs.MediaPlayer().create();
dashPlayer.getDebug().setLogToBrowserConsole(false);
Observed behaviour
In players built using latest dash js 'https://cdn.dashjs.org/latest/dash.mediaplayer.min.js'
Console output
Uncaught TypeError: t.getDebug(...).setLogToBrowserConsole is not a function
at Object.initialiseDash (fluidplayer.min.js:1)
Like to know this API is change
The text was updated successfully, but these errors were encountered: