Remove the io:format line

This commit is contained in:
Feng Lee 2017-03-06 18:43:44 +08:00
parent 99c83dbe21
commit dae3d22bef
1 changed files with 1 additions and 1 deletions

View File

@ -107,7 +107,7 @@ dispatch(ClientId, Topic, Msg) ->
try ets:lookup_element(mqtt_local_session, ClientId, 2) of
Pid -> Pid ! {dispatch, Topic, Msg}
catch
error:badarg -> io:format("Session Not Found: ~p~n", [ClientId]), ok %%TODO: How??
error:badarg -> ok %%FIXME Later.
end.
call(SM, Req) ->