Remove some logging in the sendRequest error callback.
authorRobert Sesek <rsesek@bluestatic.org>
Sun, 14 Oct 2012 14:08:12 +0000 (10:08 -0400)
committerRobert Sesek <rsesek@bluestatic.org>
Sun, 14 Oct 2012 14:08:15 +0000 (10:08 -0400)
frontend/main.js

index ad16cc60c96fe9e6670eaca20825f0e13a9ff322..27080bee97885460c5d67848e5ddf9eda5397022 100644 (file)
@@ -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);
       }
   });
 };