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

Commit 1c194f4

Browse files
committed
rabbitmq-run.mk: Set console log level to debug
Exactly as we previously set the file log level to debug. Note that it does not enable logging on the console, it only changes the default log level if the user of `make run-broker` enables console logging (using `make run-broker RABBITMQ_LOGS=-`). [#171131596]
1 parent 5d1e541 commit 1c194f4

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

mk/rabbitmq-run.mk

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,8 @@ define test_rabbitmq_config
158158
{rabbit, [
159159
$(if $(RABBITMQ_NODE_PORT), {tcp_listeners$(COMMA) [$(RABBITMQ_NODE_PORT)]}$(COMMA),)
160160
{loopback_users, []},
161-
{log, [{file, [{level, debug}]}]}
161+
{log, [{file, [{level, debug}]},
162+
{console, [{level, debug}]}]}
162163
]},
163164
{rabbitmq_management, [
164165
$(if $(RABBITMQ_NODE_PORT), {listener$(COMMA) [{port$(COMMA) $(shell echo "$$(($(RABBITMQ_NODE_PORT) + 10000))")}]},)

0 commit comments

Comments
 (0)