Skip to content

Commit

Permalink
refactor/#66: delete console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
hobiJeong committed Dec 3, 2023
1 parent 4d5f325 commit b600416
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/apis/auth/jwt/jwt.guard.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ import { HttpUnauthorizedException } from '@src/http-exceptions/exceptions/http-
export class JwtAuthGuard extends AuthGuard('jwt') {
handleRequest(err, user) {
if (err || !user) {
console.log(err, user);
throw new HttpUnauthorizedException({
code: COMMON_ERROR_CODE.INVALID_TOKEN,
});
Expand Down

0 comments on commit b600416

Please sign in to comment.