From e45258ba6fe957ad4118a7af773b6ac1464cbef8 Mon Sep 17 00:00:00 2001 From: Kodi Craft Date: Sun, 6 Oct 2024 18:02:54 +0200 Subject: [PATCH] remove debug log --- apps/amethyst/lib/states/login.ex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/amethyst/lib/states/login.ex b/apps/amethyst/lib/states/login.ex index 2137b99..13ae120 100644 --- a/apps/amethyst/lib/states/login.ex +++ b/apps/amethyst/lib/states/login.ex @@ -113,7 +113,7 @@ defmodule Amethyst.ConnectionState.Login do hash = Amethyst.Minecraft.Sha1.hash(secret <> pubkey) url = Application.get_env(:amethyst, :session_server, "https://sessionserver.mojang.com") <> "/session/minecraft/hasJoined?username=" <> Map.get(state, :name) <> "&serverId=" <> hash # I don't think we need to verify the IP in the use case of Amethyst... - Logger.debug(url) + response = Req.get!(url, headers: [ {"user-agent", "Amethyst/1.0"}