From 53405e61d0c7cb3ac1286217a3e2756a55b10729 Mon Sep 17 00:00:00 2001 From: anlicheng <244108715@qq.com> Date: Mon, 2 Sep 2024 18:20:12 +0800 Subject: [PATCH] remove debug info --- apps/iot/src/endpoint/iot_zd_endpoint.erl | 1 - 1 file changed, 1 deletion(-) diff --git a/apps/iot/src/endpoint/iot_zd_endpoint.erl b/apps/iot/src/endpoint/iot_zd_endpoint.erl index 3be3bda..a14ba81 100644 --- a/apps/iot/src/endpoint/iot_zd_endpoint.erl +++ b/apps/iot/src/endpoint/iot_zd_endpoint.erl @@ -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}) -> case iot_queue:out(Q) of {{value, Body}, Q1} -> - lager:debug("[iot_zd_endpoint] fetch_next success, north data is: ~p", [Body]), PostmanPid ! {post, self(), Body}, TimerRef = erlang:start_timer(?RETRY_INTERVAL, self(), {repost_ticker, Body}),