From 6ad910d4b47a9a6bf1ec0846bef676e1134e5558 Mon Sep 17 00:00:00 2001 From: Kodi Craft Date: Fri, 4 Oct 2024 11:42:21 +0200 Subject: [PATCH] Remove debug logs used for troubleshooting --- apps/amethyst/lib/apps/connection_handler.ex | 3 --- 1 file changed, 3 deletions(-) diff --git a/apps/amethyst/lib/apps/connection_handler.ex b/apps/amethyst/lib/apps/connection_handler.ex index 7c6625b..b9d2267 100644 --- a/apps/amethyst/lib/apps/connection_handler.ex +++ b/apps/amethyst/lib/apps/connection_handler.ex @@ -155,12 +155,9 @@ defmodule Amethyst.ConnectionHandler do palette = MapSet.to_list(unique_blocks) |> Enum.with_index() |> Map.new(fn {i, v} -> {i, v} end) - Logger.debug("Using palette #{inspect(palette)}") paletted_blocks = blocks |> Enum.map(&(Map.get(palette, &1))) - Logger.debug("Paletted blocks: #{inspect(paletted_blocks)}") paletted_data = long_aligned_bit_string_reduce(paletted_blocks, bpe) - Logger.debug("Paletted data: #{inspect(paletted_data)}") Write.ubyte(bpe) <> Write.varint(map_size(palette)) <>