Skip to content
This repository was archived by the owner on Nov 17, 2020. It is now read-only.

Commit c049442

Browse files
committed
rabbitmq-run.mk: Increase lager message rate threshold from 50 to 5000
Otherwise, it drops too many messages and the log file becomes useless when debugging.
1 parent 7ee19b8 commit c049442

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

mk/rabbitmq-run.mk

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -168,6 +168,9 @@ define test_rabbitmq_config
168168
%% vim:ft=erlang:
169169

170170
[
171+
{lager, [
172+
{error_logger_hwm, 5000}
173+
]},
171174
{rabbit, [
172175
$(if $(RABBITMQ_NODE_PORT), {listeners$(COMMA) [$(RABBITMQ_NODE_PORT)]}$(COMMA),)
173176
{loopback_users, []},
@@ -186,6 +189,9 @@ define test_rabbitmq_config_with_tls
186189
%% vim:ft=erlang:
187190

188191
[
192+
{lager, [
193+
{error_logger_hwm, 5000}
194+
]},
189195
{rabbit, [
190196
{loopback_users, []},
191197
{log, [{file, [{level, debug}]}]},

0 commit comments

Comments
 (0)