فهرست منبع

keepalive resumed

Ery Lee 11 سال پیش
والد
کامیت
b746e57cdb
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  1. 1 1
      apps/emqtt/src/emqtt_client.erl

+ 1 - 1
apps/emqtt/src/emqtt_client.erl

@@ -125,7 +125,7 @@ handle_info({keepalive, timeout}, State = #state { keepalive = KeepAlive }) ->
         lager:info("Client ~s: Keepalive Timeout!", [State#state.peer_name]),
         {stop, normal, State};
     {resumed, KeepAlive1} ->
-        lager:info("~s keepalive resumed.", [State#state.peer_name]),
+        lager:info("Client ~s: Keepalive Resumed", [State#state.peer_name]),
         {noreply, State#state{ keepalive = KeepAlive1 }}
     end;