From 36561032eb10551e1dc189e7c2bb6115b0b5f44d Mon Sep 17 00:00:00 2001 From: Harald Welte Date: Thu, 2 Feb 2012 23:47:29 +0100 Subject: [PATCH] components_sup: More verbosity when starting --- TCAP/src/tcap_components_sup.erl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TCAP/src/tcap_components_sup.erl b/TCAP/src/tcap_components_sup.erl index 75d84ac..3496f48 100644 --- a/TCAP/src/tcap_components_sup.erl +++ b/TCAP/src/tcap_components_sup.erl @@ -60,6 +60,6 @@ init([USAP, ID]) -> % start the CCO server as well as a (childless) invocation supervisor InvSup = gen_inv_sup_child(ID), Cco = gen_cco_child(USAP, ID), - io:format("~p~n", [InvSup]), + io:format("~p starting InvSup(~p) CCO(~p)~n", [?MODULE, InvSup, Cco]), {ok,{{one_for_all, 0, 1}, [InvSup, Cco]}}.