Skip to content

Commit 6aeaa86

Browse files
author
andytill
committed
Increase the threshold for received redbug messages, and print millisecond timestamps.
1 parent 7a6f5f6 commit 6aeaa86

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

src/rt_redbug.erl

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,12 @@ default_trace_options() ->
9191
[
9292
%% default ct timeout of 30 minutes
9393
%% http://erlang.org/doc/apps/common_test/write_test_chapter.html#id77922
94-
{time,(30*60*1000)}
94+
{time,(30*60*1000)},
95+
%% raise the threshold for the number of traces that can be received by
96+
%% redbug before tracing is suspended
97+
{msgs, 1000},
98+
%% print milliseconds
99+
{print_msec, true}
95100
].
96101

97102
%% Stop redbug tracing on a node or list of nodes

0 commit comments

Comments
 (0)