!238 Modify line 818 of the at_socket.c file from LOG_E to LOG_D

Merge pull request !238 from qiyongzhong0/gitee_master
This commit is contained in:
bernard 2021-06-28 10:10:17 +00:00 committed by Gitee
commit c2d283e34c
1 changed files with 1 additions and 1 deletions

View File

@ -815,7 +815,7 @@ int at_recvfrom(int socket, void *mem, size_t len, int flags, struct sockaddr *f
/* wait the receive semaphore */ /* wait the receive semaphore */
if (rt_sem_take(sock->recv_notice, timeout) < 0) if (rt_sem_take(sock->recv_notice, timeout) < 0)
{ {
LOG_E("AT socket (%d) receive timeout (%d)!", socket, timeout); LOG_D("AT socket (%d) receive timeout (%d)!", socket, timeout);
errno = EAGAIN; errno = EAGAIN;
result = -1; result = -1;
goto __exit; goto __exit;