Skip to content

Commit 1a1ea10

Browse files
author
Nicholas Thomson
committed
Remove console.log calls
1 parent ef336d3 commit 1a1ea10

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

app/scripts/lib/webApiFaker.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -113,9 +113,7 @@ var distributed_random = function(min, max) {
113113
*/
114114
var linkGeneratedLists = function(companies, investors, categories) {
115115
_.each(companies, function(company){
116-
var cat_id = exponential_distribution(0, categories.length);
117-
console.log(cat_id);
118-
var category = categories[cat_id];
116+
var category = categories[exponential_distribution(0, categories.length)];
119117
company.category_id = category.id;
120118
category.company_ids.push(company.id);
121119

0 commit comments

Comments
 (0)