Skip to content

Commit

Permalink
Updated trace levels (ARMmbed#2258)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jarkko Paso authored Dec 18, 2019
1 parent 1d82fd5 commit 1f77ad6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion source/Common_Protocols/icmpv6.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand Down
2 changes: 1 addition & 1 deletion source/RPL/rpl_control.c
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down
2 changes: 1 addition & 1 deletion source/libDHCPv6/dhcp_service_api.c
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 1f77ad6

Please sign in to comment.