Merge pull request #141 from simonduq/pr/br-logging

Minor logging improvement for the border router
This commit is contained in:
Simon Duquennoy 2017-11-01 10:06:19 +01:00 committed by GitHub
commit 5f045b2213
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -360,6 +360,7 @@ print_local_addresses(void)
state = uip_ds6_if.addr_list[i].state;
if(uip_ds6_if.addr_list[i].isused &&
(state == ADDR_TENTATIVE || state == ADDR_PREFERRED)) {
LOG_INFO(" ");
LOG_INFO_6ADDR(&uip_ds6_if.addr_list[i].ipaddr);
LOG_INFO_("\n");
}