Skip to content

Commit

Permalink
ALCS-2345 Remove logger
Browse files Browse the repository at this point in the history
  • Loading branch information
fbarreta committed Oct 31, 2024
1 parent cca19c9 commit c1b6cca
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Body, Controller, Delete, Get, Logger, Param, Post, UseGuards } from '@nestjs/common';
import { Body, Controller, Delete, Get, Param, Post, UseGuards } from '@nestjs/common';
import { ApiOAuth2 } from '@nestjs/swagger';
import { RolesGuard } from '../../../common/authorization/roles-guard.service';
import * as config from 'config';
Expand All @@ -11,7 +11,6 @@ import { NoticeOfIntentTagDto } from './notice-of-intent-tag.dto';
@ApiOAuth2(config.get<string[]>('KEYCLOAK.SCOPES'))
@UseGuards(RolesGuard)
export class NoticeOfIntentTagController {
private logger = new Logger(NoticeOfIntentTagController.name);
constructor(private service: NoticeOfIntentTagService) {}

@Get('')
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Injectable, Logger } from '@nestjs/common';
import { Injectable } from '@nestjs/common';
import { InjectRepository } from '@nestjs/typeorm';
import { Tag } from '../../tag/tag.entity';
import { NoticeOfIntent } from '../notice-of-intent.entity';
Expand All @@ -7,8 +7,6 @@ import { ServiceNotFoundException, ServiceValidationException } from '@app/commo

@Injectable()
export class NoticeOfIntentTagService {
private logger = new Logger(NoticeOfIntentTagService.name);

constructor(
@InjectRepository(Tag) private tagRepository: Repository<Tag>,
@InjectRepository(NoticeOfIntent) private noiRepository: Repository<NoticeOfIntent>,
Expand Down

0 comments on commit c1b6cca

Please sign in to comment.