Include optional log message on errors

This commit is contained in:
Pierre Ossman 2017-09-05 14:31:37 +02:00
parent b05a7b1dcf
commit 0ff97c1a24
1 changed files with 1 additions and 1 deletions

View File

@ -180,4 +180,4 @@ function start() {
player.start(mode);
}
loadFile().then(enableUI).catch(function (e) { message("Error loading recording"); });
loadFile().then(enableUI).catch(function (e) { message("Error loading recording: " + e); });