From 53b29aad69a72fbc758efb31dc18c01a59eb1ab7 Mon Sep 17 00:00:00 2001 From: "R. Aidan Campbell" Date: Sun, 13 Mar 2016 12:42:52 -0400 Subject: [PATCH] quieted logging for app list retrieving --- static/js/utils.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/static/js/utils.js b/static/js/utils.js index 421aa08..ebf3028 100644 --- a/static/js/utils.js +++ b/static/js/utils.js @@ -90,7 +90,6 @@ NvHTTP.prototype = { getAppList: function () { console.log('Requested app list'); return sendMessage('openUrl', [_self._baseUrlHttps+'/applist?'+_self._buildUidStr()]).then(function (ret) { - console.log('App list request returned with: ' + ret); $xml = _self._parseXML(ret); var rootElement = $xml.find("root")[0]; @@ -104,8 +103,6 @@ NvHTTP.prototype = { running: (appElements[i].getElementsByTagName("IsRunning")[0].innerHTML.trim() == 1) }); } - - console.log('Returning app list: ' + appList); return appList; }); },