aboutsummaryrefslogtreecommitdiffstats
path: root/lib/ssh/test/ssh_echo_server.erl
diff options
context:
space:
mode:
authorHans Nilsson <[email protected]>2016-05-27 10:40:10 +0200
committerHans Nilsson <[email protected]>2016-06-07 15:41:28 +0200
commit8b2366402a6115686cd68fe617f8933a4febf5b5 (patch)
treedbd51e1d0cff09966e5bff210ad2432475636b08 /lib/ssh/test/ssh_echo_server.erl
parent4feb3583a526eef5f4570a76bf69eeae0e827367 (diff)
downloadotp-8b2366402a6115686cd68fe617f8933a4febf5b5.tar.gz
otp-8b2366402a6115686cd68fe617f8933a4febf5b5.tar.bz2
otp-8b2366402a6115686cd68fe617f8933a4febf5b5.zip
ssh: TC ssh_connection_SUITE:small_iterrupted_send
Diffstat (limited to 'lib/ssh/test/ssh_echo_server.erl')
-rw-r--r--lib/ssh/test/ssh_echo_server.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ssh/test/ssh_echo_server.erl b/lib/ssh/test/ssh_echo_server.erl
index 3702630cb4..5387d21efd 100644
--- a/lib/ssh/test/ssh_echo_server.erl
+++ b/lib/ssh/test/ssh_echo_server.erl
@@ -61,7 +61,7 @@ handle_ssh_msg({ssh_cm, CM, {data, ChannelId, 0, Data}}, #state{n = N} = State)
{ok, State#state{n = M}};
false ->
<<SendData:N/binary, _/binary>> = Data,
- ?DBG(State, "ssh_cm data Cid=~p size(Data)=~p M=~p size(SendData)=~p",[ChannelId,size(Data),M,size(SendData)]),
+ ?DBG(State, "ssh_cm data Cid=~p size(Data)=~p M=~p size(SendData)=~p~nSend eof",[ChannelId,size(Data),M,size(SendData)]),
ssh_connection:send(CM, ChannelId, SendData),
ssh_connection:send_eof(CM, ChannelId),
{stop, ChannelId, State}