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