disabled logs
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Andre Henriques 2024-01-18 23:13:58 +00:00
parent b4d0527b41
commit cc7dc7cea8

View File

@ -1,6 +1,6 @@
defmodule Utils do
@min_print_level 0
@min_print_level 3
def safecast(p, m) when p == nil, do: IO.puts('Trying to safecast #{m} with p as nil')
def safecast(p, m) when is_pid(p), do: send(p, m)