aboutsummaryrefslogtreecommitdiffstats
path: root/lib/ssh/test/ssh_echo_server.erl
diff options
context:
space:
mode:
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}