summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTim Watson <tim@rabbitmq.com>2014-02-17 13:59:07 +0000
committerTim Watson <tim@rabbitmq.com>2014-02-17 13:59:07 +0000
commit753f9ff2e5f395618ec9295cd6056f58d129429b (patch)
tree22c115e8fa60967d86dee89d16593273f7634c29 /src
parent77bdfef9442629cdb27b5df771898684bd7faee5 (diff)
downloadrabbitmq-server-git-753f9ff2e5f395618ec9295cd6056f58d129429b.tar.gz
Don't bother printing out reload errors
Diffstat (limited to 'src')
-rw-r--r--src/rabbit_boot.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rabbit_boot.erl b/src/rabbit_boot.erl
index 489410fa58..8561e7a5a2 100644
--- a/src/rabbit_boot.erl
+++ b/src/rabbit_boot.erl
@@ -214,7 +214,7 @@ reload_all(Modules) ->
[begin
case code:soft_purge(Mod) of
true -> load_mod(Mod);
- false -> io:format("unable to purge ~p~n", [Mod])
+ false -> ok
end
end || Mod <- Modules].