@@ -310,7 +310,7 @@ nsapi_size_or_error_t AT_CellularStack::socket_sendto(nsapi_socket_t handle, con
310310 _at.unlock ();
311311
312312 if (ret_val >= 0 ) {
313- tr_info (" Socket %d sent %d bytes to %s port %d" , find_socket_index (socket), ret_val, addr.get_ip_address (), addr.get_port ());
313+ tr_debug (" Socket %d sent %d bytes to %s port %d" , find_socket_index (socket), ret_val, addr.get_ip_address (), addr.get_port ());
314314 } else if (ret_val != NSAPI_ERROR_WOULD_BLOCK) {
315315 tr_error (" Socket %d sendto %s error %d" , find_socket_index (socket), addr.get_ip_address (), ret_val);
316316 }
@@ -362,9 +362,9 @@ nsapi_size_or_error_t AT_CellularStack::socket_recvfrom(nsapi_socket_t handle, S
362362
363363 if (ret_val >= 0 ) {
364364 if (addr) {
365- tr_info (" Socket %d recv %d bytes from %s port %d" , find_socket_index (socket), ret_val, addr->get_ip_address (), addr->get_port ());
365+ tr_debug (" Socket %d recv %d bytes from %s port %d" , find_socket_index (socket), ret_val, addr->get_ip_address (), addr->get_port ());
366366 } else {
367- tr_info (" Socket %d recv %d bytes" , find_socket_index (socket), ret_val);
367+ tr_debug (" Socket %d recv %d bytes" , find_socket_index (socket), ret_val);
368368 }
369369 } else if (ret_val != NSAPI_ERROR_WOULD_BLOCK) {
370370 tr_error (" Socket %d recv error %d" , find_socket_index (socket), ret_val);
0 commit comments