diff options
author | Raimo Niskanen <[email protected]> | 2016-07-25 14:26:45 +0200 |
---|---|---|
committer | Raimo Niskanen <[email protected]> | 2016-07-25 14:29:35 +0200 |
commit | 825145898d7bf69147c1e6a6ad66c3454e7ec8f1 (patch) | |
tree | 0fb49da4d912ab0dd1eda8f492fabf8c78c3b444 /lib/common_test/src/ct_gen_conn.erl | |
parent | 2ed9828f26e420543eefced8b8138c474694cd91 (diff) | |
parent | f5ef4087331c0181fd154dcaa372a05e6f8bd408 (diff) | |
download | otp-825145898d7bf69147c1e6a6ad66c3454e7ec8f1.tar.gz otp-825145898d7bf69147c1e6a6ad66c3454e7ec8f1.tar.bz2 otp-825145898d7bf69147c1e6a6ad66c3454e7ec8f1.zip |
Merge branch 'maint-18' into maint
Conflicts:
OTP_VERSION
erts/doc/src/notes.xml
erts/vsn.mk
lib/common_test/doc/src/notes.xml
lib/common_test/vsn.mk
lib/ssl/doc/src/notes.xml
lib/ssl/src/ssl.appup.src
lib/ssl/vsn.mk
lib/stdlib/test/ets_SUITE.erl
otp_versions.table
Diffstat (limited to 'lib/common_test/src/ct_gen_conn.erl')
-rw-r--r-- | lib/common_test/src/ct_gen_conn.erl | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/lib/common_test/src/ct_gen_conn.erl b/lib/common_test/src/ct_gen_conn.erl index 23ba1ab981..8b59d3ab23 100644 --- a/lib/common_test/src/ct_gen_conn.erl +++ b/lib/common_test/src/ct_gen_conn.erl @@ -27,7 +27,7 @@ -export([start/4, stop/1, get_conn_pid/1, check_opts/1]). -export([call/2, call/3, return/2, do_within_time/2]). --export([log/3, start_log/1, cont_log/2, end_log/0]). +-export([log/3, start_log/1, cont_log/2, cont_log_no_timestamp/2, end_log/0]). %%---------------------------------------------------------------------- %% Exported types @@ -175,6 +175,14 @@ cont_log(Format,Args) -> log(cont_log,[Format,Args]). %%%----------------------------------------------------------------- +%%% @spec cont_log_no_timestamp(Format,Args) -> ok +%%% +%%% @doc Log activities on the current connection (tool-internal use only). +%%% @see ct_logs:cont_log/2 +cont_log_no_timestamp(Format,Args) -> + log(cont_log_no_timestamp,[Format,Args]). + +%%%----------------------------------------------------------------- %%% @spec end_log() -> ok %%% %%% @doc Log activities on the current connection (tool-internal use only). |