@@ -284,15 +284,15 @@ nsapi_error_t GEMALTO_CINTERION_CellularStack::gethostbyname(const char *host, S
284
284
_at.resp_stop ();
285
285
if (size > 0 ) {
286
286
// 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);
288
288
// _at.restore_at_timeout();
289
289
if (!address->set_ip_address (ipAddress)) {
290
290
_at.unlock ();
291
291
return NSAPI_ERROR_DNS_FAILURE;
292
292
}
293
293
} else {
294
294
// Null string received
295
- tr_info (" Read %d bytes. Null string\n " , size);
295
+ tr_info (" Read %d bytes. Null string" , size);
296
296
return NSAPI_ERROR_NO_ADDRESS;
297
297
}
298
298
}
@@ -550,7 +550,7 @@ nsapi_size_or_error_t GEMALTO_CINTERION_CellularStack::socket_recvfrom_impl(Cell
550
550
size = UDP_PACKET_SIZE;
551
551
}
552
552
553
- tr_info (" requesting %d bytes\n " , size);
553
+ tr_debug (" requesting %d bytes\n " , size);
554
554
_at.cmd_start_stop (" ^SISR" , " =" , " %d%d" , socket->id , size);
555
555
556
556
sisr_retry:
@@ -574,7 +574,7 @@ nsapi_size_or_error_t GEMALTO_CINTERION_CellularStack::socket_recvfrom_impl(Cell
574
574
575
575
nsapi_size_or_error_t len = _at.read_int ();
576
576
if (len == 0 ) {
577
- tr_warn (" Socket %d no data" , socket->id );
577
+ tr_debug (" Socket %d no data" , socket->id );
578
578
_at.resp_stop ();
579
579
RESTORE_URCs_AND_RETURN (NSAPI_ERROR_WOULD_BLOCK);
580
580
}
0 commit comments