Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 1f77ad6

Browse files
author
Jarkko Paso
authoredDec 18, 2019
Updated trace levels (ARMmbed#2258)
1 parent 1d82fd5 commit 1f77ad6

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed
 

‎source/Common_Protocols/icmpv6.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1713,7 +1713,7 @@ buffer_t *icmpv6_build_na(protocol_interface_info_entry_t *cur, bool solicited,
17131713
buf->info = (buffer_info_t)(B_DIR_DOWN | B_FROM_ICMP | B_TO_ICMP);
17141714
buf->interface = cur;
17151715

1716-
tr_debug("Build NA");
1716+
tr_info("Build NA");
17171717

17181718
return (buf);
17191719
}

‎source/RPL/rpl_control.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1263,7 +1263,7 @@ void rpl_control_transmit_dio(rpl_domain_t *domain, protocol_interface_info_entr
12631263
const rpl_dio_route_list_t *routes = rpl_dodag_get_route_list(dodag);
12641264
const prefix_list_t *prefixes = rpl_dodag_get_prefix_list(dodag);
12651265

1266-
tr_debug("transmit dio, rank: %x", rank);
1266+
tr_info("transmit dio, rank: %x", rank);
12671267
protocol_interface_info_entry_t *downstream_if = protocol_stack_interface_info_get_by_id(domain->non_storing_downstream_interface);
12681268
length = 24;
12691269
if (conf) {

‎source/libDHCPv6/dhcp_service_api.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -842,7 +842,7 @@ void dhcp_service_send_message(msg_tr_t *msg_tr_ptr)
842842
if (retval != 0) {
843843
tr_warn("dhcp service socket_sendto fails: %i", retval);
844844
} else {
845-
tr_debug("dhcp service socket_sendto %s", trace_ipv6(msg_tr_ptr->addr.address));
845+
tr_info("dhcp service socket_sendto %s", trace_ipv6(msg_tr_ptr->addr.address));
846846
}
847847
}
848848
bool dhcp_service_timer_tick(uint16_t ticks)

0 commit comments

Comments
 (0)
Please sign in to comment.