summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDimitri Sokolyuk <demon@dim13.org>2015-11-11 22:01:48 +0100
committerDimitri Sokolyuk <demon@dim13.org>2015-11-11 22:01:48 +0100
commit7e82bf00d1ef0daa44c6ed1c298f41a177c2e476 (patch)
tree87b18b23bce7553ae8ad54c2852f2bc2ff780e22
parentbc5f240748b40b8556e0eb11532e0c229440ca60 (diff)
Remove debug output on Send
-rw-r--r--src/pbx_conn.erl1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/pbx_conn.erl b/src/pbx_conn.erl
index 61c0f3a..8934532 100644
--- a/src/pbx_conn.erl
+++ b/src/pbx_conn.erl
@@ -24,7 +24,6 @@ handle_call(_Request, _From, Socket) ->
{reply, ok, Socket}.
handle_cast({ok, Reply}, Socket) ->
- io:format("Send: ~p~n", [Reply]),
gen_tcp:send(Socket, Reply),
{noreply, Socket};
handle_cast({error, Reason}, Socket) ->