We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7a6f5f6 commit 6aeaa86Copy full SHA for 6aeaa86
src/rt_redbug.erl
@@ -91,7 +91,12 @@ default_trace_options() ->
91
[
92
%% default ct timeout of 30 minutes
93
%% http://erlang.org/doc/apps/common_test/write_test_chapter.html#id77922
94
- {time,(30*60*1000)}
+ {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}
100
].
101
102
%% Stop redbug tracing on a node or list of nodes
0 commit comments