瀏覽代碼

Merge pull request #2616 from Lawlieta/develop

[net][at] Modify AT commands send timeout error log level
Bernard Xiong 6 年之前
父節點
當前提交
688452841c
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      components/net/at/src/at_client.c

+ 1 - 1
components/net/at/src/at_client.c

@@ -311,7 +311,7 @@ int at_obj_exec_cmd(at_client_t client, at_response_t resp, const char *cmd_expr
         if (rt_sem_take(client->resp_notice, resp->timeout) != RT_EOK)
         if (rt_sem_take(client->resp_notice, resp->timeout) != RT_EOK)
         {
         {
             cmd = at_get_last_cmd(&cmd_size);
             cmd = at_get_last_cmd(&cmd_size);
-            LOG_E("execute command (%.*s) timeout (%d ticks)!", cmd_size, cmd, resp->timeout);
+            LOG_D("execute command (%.*s) timeout (%d ticks)!", cmd_size, cmd, resp->timeout);
             client->resp_status = AT_RESP_TIMEOUT;
             client->resp_status = AT_RESP_TIMEOUT;
             result = -RT_ETIMEOUT;
             result = -RT_ETIMEOUT;
             goto __exit;
             goto __exit;