remove debug info

This commit is contained in:
anlicheng 2024-09-02 18:20:12 +08:00
parent 6df2404bfd
commit 53405e61d0

View File

@ -123,7 +123,6 @@ handle_event(info, fetch_next, connected, State = #state{is_busy = true}) ->
handle_event(info, fetch_next, connected, State = #state{postman_pid = PostmanPid, iot_queue = Q}) -> handle_event(info, fetch_next, connected, State = #state{postman_pid = PostmanPid, iot_queue = Q}) ->
case iot_queue:out(Q) of case iot_queue:out(Q) of
{{value, Body}, Q1} -> {{value, Body}, Q1} ->
lager:debug("[iot_zd_endpoint] fetch_next success, north data is: ~p", [Body]),
PostmanPid ! {post, self(), Body}, PostmanPid ! {post, self(), Body},
TimerRef = erlang:start_timer(?RETRY_INTERVAL, self(), {repost_ticker, Body}), TimerRef = erlang:start_timer(?RETRY_INTERVAL, self(), {repost_ticker, Body}),