Merge pull request #783 from tiepettersen/contrib/ti-erronous-log-newline

Fix correct LOG_INFO in platform.c
This commit is contained in:
George Oikonomou 2018-11-30 11:32:19 +00:00 committed by GitHub
commit 372cce8beb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -250,9 +250,9 @@ platform_init_stage_three(void)
LOG_INFO("RF: Channel %d", chan);
if(NETSTACK_RADIO.get_value(RADIO_PARAM_PAN_ID, &pan) == RADIO_RESULT_OK) {
LOG_INFO(", PANID 0x%04X", pan);
LOG_INFO_(", PANID 0x%04X", pan);
}
LOG_INFO("\n");
LOG_INFO_("\n");
LOG_INFO("Node ID: %d\n", node_id);