Improve warning message when a media format isn't supported

This commit is contained in:
Marco Castelluccio 2014-11-22 18:02:59 +01:00
Родитель 471acd8db8
Коммит 815ac7e0f7
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -429,7 +429,7 @@ PlayerContainer.prototype.realize = function(contentType) {
this.player = new ImagePlayer(this);
this.player.realize().then(resolve);
} else {
console.warn("Unsupported media format: " + this.mediaFormat);
console.warn("Unsupported media format (" + this.mediaFormat + ") for " + this.url);
resolve(false);
}
}).bind(this));