diff --git a/source/Common_Protocols/icmpv6.c b/source/Common_Protocols/icmpv6.c index 5222fde7689c..1a0f2c3355d5 100644 --- a/source/Common_Protocols/icmpv6.c +++ b/source/Common_Protocols/icmpv6.c @@ -1713,7 +1713,7 @@ buffer_t *icmpv6_build_na(protocol_interface_info_entry_t *cur, bool solicited, buf->info = (buffer_info_t)(B_DIR_DOWN | B_FROM_ICMP | B_TO_ICMP); buf->interface = cur; - tr_debug("Build NA"); + tr_info("Build NA"); return (buf); } diff --git a/source/RPL/rpl_control.c b/source/RPL/rpl_control.c index 06c704f5f653..fb287496adc4 100644 --- a/source/RPL/rpl_control.c +++ b/source/RPL/rpl_control.c @@ -1263,7 +1263,7 @@ void rpl_control_transmit_dio(rpl_domain_t *domain, protocol_interface_info_entr const rpl_dio_route_list_t *routes = rpl_dodag_get_route_list(dodag); const prefix_list_t *prefixes = rpl_dodag_get_prefix_list(dodag); - tr_debug("transmit dio, rank: %x", rank); + tr_info("transmit dio, rank: %x", rank); protocol_interface_info_entry_t *downstream_if = protocol_stack_interface_info_get_by_id(domain->non_storing_downstream_interface); length = 24; if (conf) { diff --git a/source/libDHCPv6/dhcp_service_api.c b/source/libDHCPv6/dhcp_service_api.c index 8e321a9468f6..47c09ec5e260 100644 --- a/source/libDHCPv6/dhcp_service_api.c +++ b/source/libDHCPv6/dhcp_service_api.c @@ -842,7 +842,7 @@ void dhcp_service_send_message(msg_tr_t *msg_tr_ptr) if (retval != 0) { tr_warn("dhcp service socket_sendto fails: %i", retval); } else { - tr_debug("dhcp service socket_sendto %s", trace_ipv6(msg_tr_ptr->addr.address)); + tr_info("dhcp service socket_sendto %s", trace_ipv6(msg_tr_ptr->addr.address)); } } bool dhcp_service_timer_tick(uint16_t ticks)