Skip to content

Commit 1b45f5f

Browse files
committed
Remove console log
1 parent 7ec7121 commit 1b45f5f

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

user-service/app/middleware/basic-access-control.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ import { findUserById as _findUserById } from "../model/repository.js";
33

44
export function verifyAccessToken(req, res, next) {
55
const authHeader = req.headers["authorization"];
6-
console.log(authHeader);
76
if (!authHeader) {
87
return res.status(401).json({ message: "Authentication failed" });
98
}

0 commit comments

Comments
 (0)