Skip to content

Commit

Permalink
Removing extraneous console.log messages.
Browse files Browse the repository at this point in the history
  • Loading branch information
simianhacker committed Mar 31, 2014
1 parent 78b5aa3 commit f5a3f9a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 10 deletions.
8 changes: 1 addition & 7 deletions src/app/services/filterSrv.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,6 @@ define([
// This is used both for adding filters and modifying them.
// If an id is passed, the filter at that id is updated
this.set = function(filter,id,noRefresh) {
console.log(dashboard.current.services.filter.list);
console.log(dashboard.current.services.filter.list);

var _r;

_.defaults(filter,{
Expand Down Expand Up @@ -92,9 +89,6 @@ define([
function(v,k){return parseInt(k,10);}),dashboard.current.services.filter.ids);
$rootScope.$broadcast('filter');

console.log(dashboard.current.services.filter.list);
console.log(dashboard.current.services.filter.list);

return _r;
};

Expand Down Expand Up @@ -252,4 +246,4 @@ define([
self.init();
});

});
});
4 changes: 1 addition & 3 deletions src/app/services/kbnIndex.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ function (angular, _, config, moment) {

something = ejs.client.get("/" + indices.join(",") + "/_aliases?ignore_missing=true",
undefined, undefined, function (data, p) {
console.log(p);
if (p === 404) {
return [];
}
Expand All @@ -54,7 +53,6 @@ function (angular, _, config, moment) {
});

return something.then(function(p) {
console.log(p);

var indices = [];
_.each(p, function(v,k) {
Expand Down Expand Up @@ -114,4 +112,4 @@ function (angular, _, config, moment) {
}
});

});
});

0 comments on commit f5a3f9a

Please sign in to comment.