Skip to content

Commit ef8db24

Browse files
Merge pull request #14374 from rabbitmq/mergify/bp/v4.1.x/pr-14373
Do not log every transient (or Erlang/OTP-provided) dependency when listing plugins (backport #14373)
2 parents c82efd8 + 14def87 commit ef8db24

File tree

1 file changed

+0
-14
lines changed

1 file changed

+0
-14
lines changed

deps/rabbit/src/rabbit_plugins.erl

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -694,20 +694,6 @@ remove_plugins(Plugins) ->
694694
IsAPlugin =
695695
lists:member(Plugin, ActualPlugins) orelse
696696
lists:member(Name, PluginDeps),
697-
if
698-
IsOTPApp ->
699-
rabbit_log:debug(
700-
"Plugins discovery: "
701-
"ignoring ~ts, Erlang/OTP application",
702-
[Name]);
703-
not IsAPlugin ->
704-
rabbit_log:debug(
705-
"Plugins discovery: "
706-
"ignoring ~ts, not a RabbitMQ plugin",
707-
[Name]);
708-
true ->
709-
ok
710-
end,
711697
not (IsOTPApp orelse not IsAPlugin)
712698
end, Plugins).
713699

0 commit comments

Comments
 (0)