Skip to content

Commit

Permalink
reduce console debug spam
Browse files Browse the repository at this point in the history
git-svn-id: https://xpra.org/svn/Xpra/trunk@15182 3bb7dfac-3a0b-4e04-842a-767bc560f471
  • Loading branch information
totaam committed Feb 28, 2017
1 parent db447ef commit f1cddc7
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/html5/js/Window.js
Expand Up @@ -710,7 +710,9 @@ XpraWindow.prototype._close_broadway = function() {


XpraWindow.prototype._close_video = function() {
this.log("close_video: video_source_buffer="+this.video_source_buffer+", media_source="+this.media_source+", video="+this.video);
if(this.debug) {
console.debug("close_video: video_source_buffer="+this.video_source_buffer+", media_source="+this.media_source+", video="+this.video);
}
this.video_source_ready = false;
if(this.video) {
if(this.media_source) {
Expand Down

0 comments on commit f1cddc7

Please sign in to comment.