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.
This commit is contained in:
Jean-Sébastien Pédron 2018-12-20 15:09:56 +01:00
parent 43e40f3370
commit 49956c6423
1 changed files with 6 additions and 0 deletions

View File

@ -168,6 +168,9 @@ define test_rabbitmq_config
%% vim:ft=erlang:
[
{lager, [
{error_logger_hwm, 5000}
]},
{rabbit, [
$(if $(RABBITMQ_NODE_PORT), {listeners$(COMMA) [$(RABBITMQ_NODE_PORT)]}$(COMMA),)
{loopback_users, []},
@ -186,6 +189,9 @@ define test_rabbitmq_config_with_tls
%% vim:ft=erlang:
[
{lager, [
{error_logger_hwm, 5000}
]},
{rabbit, [
{loopback_users, []},
{log, [{file, [{level, debug}]}]},