Remove debug io:format() from tcp_server

This commit is contained in:
Camden Dixie O'Brien 2025-02-24 17:40:36 +00:00
parent ef9e578e25
commit 4eceba338c

View File

@ -22,7 +22,6 @@ child_spec(Port, CertDir) ->
modules => [?MODULE]}.
init([Port, CertDir]) ->
io:format("cert dir: ~p~n", [CertDir]),
SslOpts = [{certfile, filename:join([CertDir, "server.pem"])},
{cacertfile, filename:join([CertDir, "ca.pem"])},
{verify, verify_peer},