From 7c2c0c3272b5130989d876273b4958808dba3a09 Mon Sep 17 00:00:00 2001 From: Robert Sesek Date: Sun, 14 Oct 2012 10:08:12 -0400 Subject: [PATCH] Remove some logging in the sendRequest error callback. --- frontend/main.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/frontend/main.js b/frontend/main.js index ad16cc6..27080be 100644 --- a/frontend/main.js +++ b/frontend/main.js @@ -45,10 +45,8 @@ armadillo.App.prototype.sendRequest = function(action, data, callback) { data: data, success: callback, error: function(xhr, status, error) { - app.showError(xhr.responseText); console.log(xhr); - console.log(status); - console.log(error); + app.showError(xhr.responseText); } }); }; -- 2.22.5