From b1640a8c44a6e37fec7b89afd879c81005165a93 Mon Sep 17 00:00:00 2001 From: Alek Ratzloff Date: Sat, 13 Jun 2020 18:11:03 -0400 Subject: [PATCH] Remove IO.inspect from module_supervisor init Signed-off-by: Alek Ratzloff --- lib/module_supervisor.ex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/module_supervisor.ex b/lib/module_supervisor.ex index df31ff3..82575e4 100644 --- a/lib/module_supervisor.ex +++ b/lib/module_supervisor.ex @@ -29,7 +29,7 @@ defmodule Omnibot.ModuleSupervisor do end # Add each child to the "loaded modules" list in the State - Enum.each(IO.inspect(children), fn {module, opts} -> State.add_loaded_module({module, opts[:cfg]}) end) + Enum.each(children, fn {module, opts} -> State.add_loaded_module({module, opts[:cfg]}) end) Supervisor.init(children, strategy: :one_for_one) end