Skip to content

Commit bedbb03

Browse files
author
Daniil Fedotov
committed
Remove debug logs
1 parent 68a40af commit bedbb03

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

src/rabbit_vhost.erl

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -63,14 +63,10 @@ recover(VHost) ->
6363
VHostStubFile = filename:join(VHostDir, ".vhost"),
6464
ok = rabbit_file:ensure_dir(VHostStubFile),
6565
ok = file:write_file(VHostStubFile, VHost),
66-
rabbit_log:info("Starting vhost ~p~n", [VHost]),
6766
Qs = rabbit_amqqueue:recover(VHost),
68-
rabbit_log:info("Queues recovered for vhost ~p~n", [VHost]),
6967
ok = rabbit_binding:recover(rabbit_exchange:recover(VHost),
7068
[QName || #amqqueue{name = QName} <- Qs]),
71-
rabbit_log:info("Bindings recovered for vhost ~p~n", [VHost]),
7269
ok = rabbit_amqqueue:start(Qs),
73-
rabbit_log:info("Queues started for vhost ~p~n", [VHost]),
7470
ok.
7571

7672
%%----------------------------------------------------------------------------

0 commit comments

Comments
 (0)