We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dbff137 commit e61eb7aCopy full SHA for e61eb7a
deps/rabbitmq_shovel/src/rabbit_shovel_sup.erl
@@ -8,6 +8,9 @@
8
-module(rabbit_shovel_sup).
9
-behaviour(supervisor).
10
11
+-include_lib("kernel/include/logger.hrl").
12
+-include_lib("logging.hrl").
13
+
14
-export([start_link/0, init/1]).
15
16
-import(rabbit_shovel_config, []).
@@ -22,6 +25,7 @@ start_link() ->
22
25
23
26
init([Configurations]) ->
24
27
OpMode = rabbit_shovel_operating_mode:operating_mode(),
28
+ ?LOG_DEBUG("Shovel: operating mode set to ~ts", [OpMode]),
29
StaticShovelSpecs = make_child_specs(OpMode, Configurations),
30
Len = dict:size(Configurations),
31
ChildSpecs = [
0 commit comments