diff options
| author | Simon MacMullen <simon@rabbitmq.com> | 2014-10-23 17:16:04 +0100 |
|---|---|---|
| committer | Simon MacMullen <simon@rabbitmq.com> | 2014-10-23 17:16:04 +0100 |
| commit | f2429678d3d3d2d8e6c1d8eb12b904e9c1c32893 (patch) | |
| tree | 926d5f42859ccfacfd641a95bd7aefd3201de02f | |
| parent | e79d40bbbe91d61f23dffc44d5f73716822c363f (diff) | |
| download | rabbitmq-server-git-f2429678d3d3d2d8e6c1d8eb12b904e9c1c32893.tar.gz | |
Log when plugins started / stopped
| -rw-r--r-- | src/rabbit_plugins.erl | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/rabbit_plugins.erl b/src/rabbit_plugins.erl index f0df3b33b4..e290fb5336 100644 --- a/src/rabbit_plugins.erl +++ b/src/rabbit_plugins.erl @@ -56,6 +56,8 @@ ensure(FileJustChanged0) -> {disabled, Stop}]), rabbit:stop_apps(Stop), clean_plugins(Stop), + rabbit_log:info("Plugins changed; enabled ~p, disabled ~p~n", + [Start, Stop]), {ok, Start, Stop}; _ -> {error, {enabled_plugins_mismatch, FileJustChanged, OurFile}} |
