From cc5f4d26d324c6513d5e43cd290467818b9869f2 Mon Sep 17 00:00:00 2001 From: Luc Didry Date: Sun, 11 Oct 2015 13:00:44 +0200 Subject: [PATCH] Small change on console debug output --- themes/default/public/js/lufi-up.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/themes/default/public/js/lufi-up.js b/themes/default/public/js/lufi-up.js index 269e98b..0efb736 100644 --- a/themes/default/public/js/lufi-up.js +++ b/themes/default/public/js/lufi-up.js @@ -382,7 +382,7 @@ function spawnWebsocket(i, callback) { ws.onerror = function() { console.log('error'); if (i < 5 && callback !== undefined) { - console.log('Retrying to send file '+i); + console.log('Retrying to send file (try '+i+' of 5)'); window.ws = spawnWebsocket(i + 1, callback); } }