From 3e531884034e38d1ec2ff3efb744c5f47d3d5c78 Mon Sep 17 00:00:00 2001 From: Seth Falcon Date: Tue, 17 Jan 2012 15:53:46 -0800 Subject: [PATCH] Re-comment debug call to io:format in emysql_tcp.erl This was introduced by accident in 287e17b2d350b5ae08f0a6243e1f2da508f72cd4 --- src/emysql_tcp.erl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/emysql_tcp.erl b/src/emysql_tcp.erl index 4198aecb..589d0bf9 100644 --- a/src/emysql_tcp.erl +++ b/src/emysql_tcp.erl @@ -34,7 +34,7 @@ -define(ETS_SELECT(TableID), ets:select(TableID,[{{'_','$2'},[],['$2']}])). send_and_recv_packet(Sock, Packet, SeqNum) -> - io:format("~nsend_and_receive_packet: SEND SeqNum: ~p, Binary: ~p~n", [SeqNum, <<(size(Packet)):24/little, SeqNum:8, Packet/binary>>]), + %-% io:format("~nsend_and_receive_packet: SEND SeqNum: ~p, Binary: ~p~n", [SeqNum, <<(size(Packet)):24/little, SeqNum:8, Packet/binary>>]), %-% io:format("~p send_and_recv_packet: send~n", [self()]), case gen_tcp:send(Sock, <<(size(Packet)):24/little, SeqNum:8, Packet/binary>>) of ok ->