Skip to content

Commit

Permalink
fix: remove console.log calls from SelectQueryBuilder (#8795)
Browse files Browse the repository at this point in the history
Closes: #8792

Co-authored-by: cduff <chris@praxhub.com>
  • Loading branch information
cduff and cduff committed Mar 25, 2022
1 parent 68a5c23 commit 54c7db4
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/query-builder/SelectQueryBuilder.ts
Expand Up @@ -2900,7 +2900,6 @@ export class SelectQueryBuilder<Entity>
}
}
if (this.selects.length) {
console.log("adding following selects: ", this.selects)
this.addSelect(this.selects)
}

Expand Down Expand Up @@ -3686,7 +3685,6 @@ export class SelectQueryBuilder<Entity>
selection &&
typeof selection[relationName] === "object"
) {
console.log("sub selection", relationName)
this.buildSelect(
selection[
relationName
Expand Down

0 comments on commit 54c7db4

Please sign in to comment.