summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/rabbit.erl4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/rabbit.erl b/src/rabbit.erl
index b09ad464b5..75425e1a95 100644
--- a/src/rabbit.erl
+++ b/src/rabbit.erl
@@ -518,9 +518,7 @@ decrypt_app(_, [], _) ->
decrypt_app(App, [{Key, Value}|Tail], Algo) ->
case decrypt(Value, Algo) of
Value -> ok;
- NewValue ->
-% io:format("~p ~p ~p~n", [Key, Value, NewValue]),
- application:set_env(App, Key, NewValue)
+ NewValue -> application:set_env(App, Key, NewValue)
end,
decrypt_app(App, Tail, Algo).