From 0ff97c1a24587a080ec5d8638a4397b3831ee80e Mon Sep 17 00:00:00 2001 From: Pierre Ossman Date: Tue, 5 Sep 2017 14:31:37 +0200 Subject: [PATCH] Include optional log message on errors --- tests/playback-ui.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/playback-ui.js b/tests/playback-ui.js index c5197a40..5e10d773 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); });