From b5095ed0e76188299bea79fa699cbf876e3ddca6 Mon Sep 17 00:00:00 2001
From: Luiz Rodrigo de Souza <me@lurodrigo.com>
Date: Thu, 31 Oct 2024 13:55:54 -0300
Subject: [PATCH] remove IO.inspect

---
 lib/type_id/ecto.ex | 2 --
 1 file changed, 2 deletions(-)

diff --git a/lib/type_id/ecto.ex b/lib/type_id/ecto.ex
index 114d529..2da4736 100644
--- a/lib/type_id/ecto.ex
+++ b/lib/type_id/ecto.ex
@@ -122,7 +122,6 @@ if Code.ensure_loaded?(Ecto.ParameterizedType) do
     end
 
     defp validate_opts!(opts) do
-      IO.inspect(opts)
       primary_key = Keyword.get(opts, :primary_key, false)
       schema = Keyword.fetch!(opts, :schema)
       field = Keyword.fetch!(opts, :field)
@@ -138,7 +137,6 @@ if Code.ensure_loaded?(Ecto.ParameterizedType) do
       else
         %{schema: schema, field: field, type: type, prefix: prefix}
       end
-      |> IO.inspect()
     end
 
     defp find_prefix(%{prefix: prefix}) when not is_nil(prefix), do: prefix