summaryrefslogtreecommitdiff
path: root/src/plop_sup.erl
diff options
context:
space:
mode:
Diffstat (limited to 'src/plop_sup.erl')
-rw-r--r--src/plop_sup.erl3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/plop_sup.erl b/src/plop_sup.erl
index 1d08d60..08ccdcb 100644
--- a/src/plop_sup.erl
+++ b/src/plop_sup.erl
@@ -2,9 +2,10 @@
-behaviour(supervisor).
-export([start_link/1, init/1]).
--export([start_in_shell/0]).
+-export([start_in_shell/1]).
start_link(Args) ->
+ io:format("plop_sup:start_link got args ~p~n", [Args]),
supervisor:start_link({local, ?MODULE}, ?MODULE, Args).
%% For testing.