Skip to content

Commit 47402ec

Browse files
committed
remove log statement
1 parent fc6fcbf commit 47402ec

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

src/api/plugins/rateLimiter.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,6 @@ const rateLimiterPlugin: FastifyPluginAsync<RateLimiterOptions> = async (
8686
"preHandler",
8787
async (request: FastifyRequest, reply: FastifyReply) => {
8888
const userIdentifier = request.ip;
89-
console.log(request.username);
9089
let computedLimit = limit;
9190
if (typeof computedLimit === "function") {
9291
computedLimit = computedLimit(request);

0 commit comments

Comments
 (0)