summary refs log tree commit diff
path: root/api/src/routes/auth/register.ts
diff options
context:
space:
mode:
Diffstat (limited to 'api/src/routes/auth/register.ts')
-rw-r--r--api/src/routes/auth/register.ts2
1 files changed, 0 insertions, 2 deletions
diff --git a/api/src/routes/auth/register.ts b/api/src/routes/auth/register.ts
index 2902c8dd..2baef98e 100644
--- a/api/src/routes/auth/register.ts
+++ b/api/src/routes/auth/register.ts
@@ -166,8 +166,6 @@ router.post("/", route({ body: "RegisterSchema" }), async (req: Request, res: Re
 		await Invite.joinGuild(user.id, body.invite);
 	}
 
-	console.log("register", body.email, body.username, ip);
-
 	return res.json({ token: await generateToken(user.id) });
 });