Skip to content

Commit

Permalink
style: remove extraneous console.logs
Browse files Browse the repository at this point in the history
  • Loading branch information
0-vortex committed Oct 13, 2022
1 parent 8161dc1 commit e3d7bd7
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
2 changes: 0 additions & 2 deletions src/contribution/contribution.service.ts
Expand Up @@ -32,8 +32,6 @@ export class ContributionService {
.offset(pageOptionsDto.skip)
.limit(pageOptionsDto.limit);

// console.log(queryBuilder.getSql());

const itemCount = await queryBuilder.getCount();
const entities = await queryBuilder.getMany();

Expand Down
2 changes: 0 additions & 2 deletions src/repo/repo.service.ts
Expand Up @@ -100,8 +100,6 @@ export class RepoService {
.offset(pageOptionsDto.skip)
.limit(pageOptionsDto.limit);

// console.log(queryBuilder.getSql());

const itemCount = await queryBuilder.getCount();
const entities = await queryBuilder.getMany();

Expand Down

0 comments on commit e3d7bd7

Please sign in to comment.