Skip to content

Commit

Permalink
fix: remove unnecessary io:format call
Browse files Browse the repository at this point in the history
  • Loading branch information
isaacharrisholt committed Dec 18, 2024
1 parent 5cd84d5 commit f933aec
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/barnacle_ffi.erl
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ lookup(Name, Type, Timeout) when is_binary(Name) ->
end.

lookup_throws(Name, Type, Timeout) when is_binary(Name) ->
io:format("Name: ~p~n", [Name]),
case inet_res:getbyname(binary_to_list(Name), Type, Timeout) of
{ok, #hostent{h_addr_list = Addrs}} ->
{ok, Addrs};
Expand Down

0 comments on commit f933aec

Please sign in to comment.