diff options
author | Micael Karlberg <[email protected]> | 2011-04-14 09:07:04 +0200 |
---|---|---|
committer | Micael Karlberg <[email protected]> | 2011-04-14 09:07:04 +0200 |
commit | 32aa680d7b2a06299f2cf37d54496060fff1b44a (patch) | |
tree | 5f8158aadeba6910e7a86be7da7763c8026b640b /lib/snmp/test/snmp_manager_user.erl | |
parent | 6f7913a20db1f59a67cc22ae3b6ce6d4d013deee (diff) | |
download | otp-32aa680d7b2a06299f2cf37d54496060fff1b44a.tar.gz otp-32aa680d7b2a06299f2cf37d54496060fff1b44a.tar.bz2 otp-32aa680d7b2a06299f2cf37d54496060fff1b44a.zip |
Final version of the (new) API.
Diffstat (limited to 'lib/snmp/test/snmp_manager_user.erl')
-rw-r--r-- | lib/snmp/test/snmp_manager_user.erl | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/snmp/test/snmp_manager_user.erl b/lib/snmp/test/snmp_manager_user.erl index b0e192344d..71fdebb67b 100644 --- a/lib/snmp/test/snmp_manager_user.erl +++ b/lib/snmp/test/snmp_manager_user.erl @@ -847,7 +847,11 @@ call(Req, To) when is_integer(To) -> {error, timeout} end. -reply(Pid, Reply, Ref) -> +reply(Pid, Reply, Ref) -> + d("reply -> entry with" + "~n Pid: ~p" + "~n Reply: ~p" + "~n Ref: ~p", [Pid, Reply, Ref]), Pid ! {Reply, Ref}. cast(Msg) -> |