diff --git a/packages/api/src/trpc.ts b/packages/api/src/trpc.ts index bf3dec20..cbaa42f3 100644 --- a/packages/api/src/trpc.ts +++ b/packages/api/src/trpc.ts @@ -139,7 +139,7 @@ const rateLimitMiddleware = t.middleware(async ({ ctx, path, next }) => { log.warn("Rate limit exceeded", { ip: identifier }); throw new TRPCError({ code: "INTERNAL_SERVER_ERROR", - message: "Rate limit exceeded", + message: "Rate limit exceeded on this IP: " + identifier, }); } return next();