diff options
author | Hans Nilsson <[email protected]> | 2017-04-20 20:47:13 +0200 |
---|---|---|
committer | Hans Nilsson <[email protected]> | 2017-04-26 12:17:25 +0200 |
commit | dfb0fed48117669bd69fd44d37fa83f264f5ca36 (patch) | |
tree | cfc6e3e064d7eae5f6ff5bdfee07be3fc274b060 /lib/ssh/test/ssh_relay.erl | |
parent | 6036156abfa955aed1ac384919a627843106c48e (diff) | |
download | otp-dfb0fed48117669bd69fd44d37fa83f264f5ca36.tar.gz otp-dfb0fed48117669bd69fd44d37fa83f264f5ca36.tar.bz2 otp-dfb0fed48117669bd69fd44d37fa83f264f5ca36.zip |
ssh: add msg traceing on one testcase
ssh: Misc test case error logging improvments
Conflicts:
lib/ssh/test/ssh_to_openssh_SUITE.erl
Diffstat (limited to 'lib/ssh/test/ssh_relay.erl')
-rw-r--r-- | lib/ssh/test/ssh_relay.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/ssh/test/ssh_relay.erl b/lib/ssh/test/ssh_relay.erl index 1e3810e9d4..763130358b 100644 --- a/lib/ssh/test/ssh_relay.erl +++ b/lib/ssh/test/ssh_relay.erl @@ -242,11 +242,11 @@ handle_info(stop, State) -> {stop, normal, State}; handle_info({'DOWN', _Ref, _process, LPid, Reason}, S) when S#state.lpid == LPid -> - io:format("Acceptor has finished: ~p~n", [Reason]), + io:format("Acceptor in ~p has finished: ~p~n", [?MODULE,Reason]), {noreply, S}; handle_info(_Info, State) -> - io:format("Unhandled info: ~p~n", [_Info]), + io:format("~p:~p Unhandled info: ~p~n", [?MODULE,?LINE,_Info]), {noreply, State}. %%-------------------------------------------------------------------- |