Browse Source

部分代码整理

master
SisMaker 4 years ago
parent
commit
019399f1dd
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      src/template/ut_gen_srv.erl

+ 3
- 3
src/template/ut_gen_srv.erl View File

@ -32,16 +32,16 @@ init(_Args) ->
{ok, #state{}}.
handleCall(_Msg, _State, _FROM) ->
?ERR("sceneMgrSrv call receive unexpect msg ~p ~n ", [_Msg]),
?ERR("~p call receive unexpect msg ~p ~n ", [?MODULE, _Msg]),
{reply, ok}.
%%
handleCast(_Msg, _State) ->
?ERR("sceneMgrSrv cast receive unexpect msg ~p ~n ", [_Msg]),
?ERR("~p cast receive unexpect msg ~p ~n ", [?MODULE, _Msg]),
kpS.
handleInfo(_Msg, _State) ->
?ERR("sceneMgrSrv info receive unexpect msg ~p ~n ", [_Msg]),
?ERR("~p info receive unexpect msg ~p ~n ", [?MODULE, _Msg]),
kpS.
terminate(_Reason, _State) ->

Loading…
Cancel
Save