summaryrefslogtreecommitdiff
path: root/src/pbx_sup.erl
diff options
context:
space:
mode:
authorDimitri Sokolyuk <demon@dim13.org>2015-11-02 16:36:36 +0100
committerDimitri Sokolyuk <demon@dim13.org>2015-11-02 16:36:36 +0100
commit2000ab446d49d75d21d4b338e20d6eec9d2f48d1 (patch)
treed58296db14bd29eca52db94f3cb1795105847f69 /src/pbx_sup.erl
parent3f07fdc48606b7c9c22fadda29ef44c41ab9a693 (diff)
Add start monitor
Diffstat (limited to 'src/pbx_sup.erl')
-rw-r--r--src/pbx_sup.erl2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/pbx_sup.erl b/src/pbx_sup.erl
index 504866c..c9fa66a 100644
--- a/src/pbx_sup.erl
+++ b/src/pbx_sup.erl
@@ -16,7 +16,6 @@
%% ===================================================================
start_link() ->
- io:format("start_link~n", []),
supervisor:start_link({local, ?MODULE}, ?MODULE, []).
%% ===================================================================
@@ -24,6 +23,5 @@ start_link() ->
%% ===================================================================
init([]) ->
- io:format("init~n", []),
{ok, { {one_for_one, 5, 10}, []} }.