remove log

This commit is contained in:
Mo Bitar
2017-02-26 11:16:36 -06:00
parent 1adfd5146d
commit b279678911

View File

@@ -32,12 +32,11 @@ class HttpManager {
} }
if(xmlhttp.status >= 200 && xmlhttp.status <= 299){ if(xmlhttp.status >= 200 && xmlhttp.status <= 299){
console.log("onsuccess", response);
this.$timeout(function(){ this.$timeout(function(){
onsuccess(response); onsuccess(response);
}) })
} else { } else {
console.error("onerror", response); console.error("Request error:", response);
this.$timeout(function(){ this.$timeout(function(){
onerror(response) onerror(response)
}) })