summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPierre Ossman <ossman@cendio.se>2017-09-05 14:31:37 +0200
committerPierre Ossman <ossman@cendio.se>2017-09-05 14:31:37 +0200
commit0ff97c1a24587a080ec5d8638a4397b3831ee80e (patch)
tree7df04dc868ffcd14724b880291b5508386aebf2c
parentb05a7b1dcfd8ec618c2b7ab64c8fdb31558ab10d (diff)
downloadnovnc-0ff97c1a24587a080ec5d8638a4397b3831ee80e.tar.gz
Include optional log message on errors
-rw-r--r--tests/playback-ui.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/playback-ui.js b/tests/playback-ui.js
index c5197a4..5e10d77 100644
--- a/tests/playback-ui.js
+++ b/tests/playback-ui.js
@@ -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); });