Skip to content

Commit 64e5a6a

Browse files
Merge pull request #14373 from rabbitmq/mk-reduce-rabbitmq-plugins-log-rate
Do not log every transient (or Erlang/OTP-provided) dependency when listing plugins
2 parents cf3fd1e + 30d78a4 commit 64e5a6a

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
@@ -753,20 +753,6 @@ remove_plugins(Plugins) ->
753753
IsAPlugin =
754754
lists:member(Plugin, ActualPlugins) orelse
755755
lists:member(Name, PluginDeps),
756-
if
757-
IsOTPApp ->
758-
?LOG_DEBUG(
759-
"Plugins discovery: "
760-
"ignoring ~ts, Erlang/OTP application",
761-
[Name]);
762-
not IsAPlugin ->
763-
?LOG_DEBUG(
764-
"Plugins discovery: "
765-
"ignoring ~ts, not a RabbitMQ plugin",
766-
[Name]);
767-
true ->
768-
ok
769-
end,
770756
not (IsOTPApp orelse not IsAPlugin)
771757
end, Plugins).
772758

0 commit comments

Comments
 (0)