aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHans Nilsson <[email protected]>2016-03-24 14:39:12 +0100
committerHans Nilsson <[email protected]>2016-03-24 14:39:12 +0100
commitbedbc46b08fc58c1c907e58c3443a4b0831f7aba (patch)
tree9ea1687ecb7abe2e4eee2a08241e72e0aa73f98b
parent59f8b16d04ef738097564d3a33cd6f67949a3742 (diff)
downloadotp-bedbc46b08fc58c1c907e58c3443a4b0831f7aba.tar.gz
otp-bedbc46b08fc58c1c907e58c3443a4b0831f7aba.tar.bz2
otp-bedbc46b08fc58c1c907e58c3443a4b0831f7aba.zip
ssh: Add logging in testing subsystem
-rw-r--r--lib/ssh/test/ssh_echo_server.erl1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/ssh/test/ssh_echo_server.erl b/lib/ssh/test/ssh_echo_server.erl
index 96c9aad135..8b6273c3fe 100644
--- a/lib/ssh/test/ssh_echo_server.erl
+++ b/lib/ssh/test/ssh_echo_server.erl
@@ -31,6 +31,7 @@
-export([init/1, handle_msg/2, handle_ssh_msg/2, terminate/2]).
init([N]) ->
+ ct:pal("Echo server: ~p",[self()]),
{ok, #state{n = N}}.
handle_msg({ssh_channel_up, ChannelId, ConnectionManager}, State) ->