summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMichael Klishin <michael@clojurewerkz.org>2017-08-21 15:31:26 -0400
committerMichael Klishin <michael@clojurewerkz.org>2017-08-21 15:31:26 -0400
commitc4619d8298ef0b3341713045cf3099aac59f8f4a (patch)
tree173de88c51a269211a70b77beed17fff36b69a43 /src
parent57825b776711e64c5815b87346dcf3679523bd90 (diff)
downloadrabbitmq-server-git-c4619d8298ef0b3341713045cf3099aac59f8f4a.tar.gz
Wording
Diffstat (limited to 'src')
-rw-r--r--src/rabbit_lager.erl8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/rabbit_lager.erl b/src/rabbit_lager.erl
index b9dee6c623..db45b61072 100644
--- a/src/rabbit_lager.erl
+++ b/src/rabbit_lager.erl
@@ -206,16 +206,16 @@ configure_lager() ->
{[], []} -> [];
{[], LogLevels} ->
io:format("Using deprecated config parameter 'log_levels'. "
- "Please update your configuration file according to: "
+ "Please update your configuration file according to "
"https://rabbitmq.com/logging.html"),
lists:map(fun({Name, Level}) -> {Name, [{level, Level}]} end,
LogLevels);
{Categories, []} ->
Categories;
{Categories, LogLevels} ->
- io:format("Using the deprecated config parameter 'log_levels' together "
- "with the new parameter 'categories'."
- " 'log_levels' will be ignored. Please remove 'log_levels' "
+ io:format("Using the deprecated config parameter 'rabbit.log_levels' together "
+ "with a new parameter for log categories."
+ " 'rabbit.log_levels' will be ignored. Please remove it from the config. More at "
"https://rabbitmq.com/logging.html"),
Categories
end,