typeorm 0.3.3 → 0.3.4-dev.54c7db4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
File without changes
File without changes
@@ -1613,7 +1613,6 @@ export class SelectQueryBuilder extends QueryBuilder {
1613
1613
  }
1614
1614
  }
1615
1615
  if (this.selects.length) {
1616
- console.log("adding following selects: ", this.selects);
1617
1616
  this.addSelect(this.selects);
1618
1617
  }
1619
1618
  if (this.findOptions.where) {
@@ -2118,7 +2117,6 @@ export class SelectQueryBuilder extends QueryBuilder {
2118
2117
  });
2119
2118
  if (selection &&
2120
2119
  typeof selection[relationName] === "object") {
2121
- console.log("sub selection", relationName);
2122
2120
  this.buildSelect(selection[relationName], relation.inverseEntityMetadata, joinAlias);
2123
2121
  }
2124
2122
  }