%%%------------------------------------------------------------------- %%% @author cheese %%% @copyright (C) 2016, %%% @doc %%% %%% @end %%% Created : 18. Apr 2016 16:32 %%%------------------------------------------------------------------- -module(logger_Cheese_app). -author("cheese"). -behaviour(application). %% Application callbacks -export([start/0, start/2, stop/1]). start() -> application:start(logger_app), ok. start(_StartType, _StartArgs) -> logger_sup:start_link(). stop(_State) -> ok.