@@ -284,15 +284,15 @@ nsapi_error_t GEMALTO_CINTERION_CellularStack::gethostbyname(const char *host, S
284284 _at.resp_stop ();
285285 if (size > 0 ) {
286286 // Valid string received
287- tr_info (" Read %d bytes. Valid string: %s\n " , size, ipAddress);
287+ tr_info (" Read %d bytes. Valid string: %s" , size, ipAddress);
288288 // _at.restore_at_timeout();
289289 if (!address->set_ip_address (ipAddress)) {
290290 _at.unlock ();
291291 return NSAPI_ERROR_DNS_FAILURE;
292292 }
293293 } else {
294294 // Null string received
295- tr_info (" Read %d bytes. Null string\n " , size);
295+ tr_info (" Read %d bytes. Null string" , size);
296296 return NSAPI_ERROR_NO_ADDRESS;
297297 }
298298 }
@@ -550,7 +550,7 @@ nsapi_size_or_error_t GEMALTO_CINTERION_CellularStack::socket_recvfrom_impl(Cell
550550 size = UDP_PACKET_SIZE;
551551 }
552552
553- tr_info (" requesting %d bytes\n " , size);
553+ tr_debug (" requesting %d bytes\n " , size);
554554 _at.cmd_start_stop (" ^SISR" , " =" , " %d%d" , socket->id , size);
555555
556556sisr_retry:
@@ -574,7 +574,7 @@ nsapi_size_or_error_t GEMALTO_CINTERION_CellularStack::socket_recvfrom_impl(Cell
574574
575575 nsapi_size_or_error_t len = _at.read_int ();
576576 if (len == 0 ) {
577- tr_warn (" Socket %d no data" , socket->id );
577+ tr_debug (" Socket %d no data" , socket->id );
578578 _at.resp_stop ();
579579 RESTORE_URCs_AND_RETURN (NSAPI_ERROR_WOULD_BLOCK);
580580 }
0 commit comments