From f3834c6cdef26d15ee50df5859394f5446eb1928 Mon Sep 17 00:00:00 2001 From: mat <27899617+mat-1@users.noreply.github.com> Date: Wed, 24 Mar 2021 22:15:59 -0500 Subject: remove console.logs --- src/mojang.ts | 2 -- 1 file changed, 2 deletions(-) (limited to 'src') diff --git a/src/mojang.ts b/src/mojang.ts index 7efc4ae..85c0185 100644 --- a/src/mojang.ts +++ b/src/mojang.ts @@ -22,7 +22,6 @@ interface MojangApiResponse { * Get mojang api data from the session server */ export async function mojangDataFromUuid(uuid: string): Promise { - console.log('mojangDataFromUuid', uuid) const fetchResponse = await fetch( // using mojang directly is faster than ashcon lol, also mojang removed the ratelimits from here `https://sessionserver.mojang.com/session/minecraft/profile/${undashUuid(uuid)}`, @@ -37,7 +36,6 @@ export async function mojangDataFromUuid(uuid: string): Promise { - console.log('uuidFromUsername', username) // since we don't care about anything other than the uuid, we can use /uuid/ instead of /user/ const fetchResponse = await fetch( `https://api.ashcon.app/mojang/v2/uuid/${username}`, -- cgit