Remove remaining \n from log lines. (#5675)

This commit is contained in:
Tom Fifield
2024-12-27 18:01:02 +11:00
committed by GitHub
parent 8f8e304216
commit ed39d14c85
8 changed files with 26 additions and 26 deletions

View File

@@ -1059,7 +1059,7 @@ void NodeDB::loadFromDisk()
state = loadProto(uiconfigFileName, meshtastic_DeviceUIConfig_size, sizeof(meshtastic_DeviceUIConfig),
&meshtastic_DeviceUIConfig_msg, &uiconfig);
if (state == LoadFileResult::LOAD_SUCCESS) {
LOG_INFO("Loaded UIConfig\n");
LOG_INFO("Loaded UIConfig");
}
// 2.4.X - configuration migration to update new default intervals

View File

@@ -201,7 +201,7 @@ size_t PhoneAPI::getFromRadio(uint8_t *buf)
break;
case STATE_SEND_UIDATA:
LOG_INFO("getFromRadio=STATE_SEND_UIDATA\n");
LOG_INFO("getFromRadio=STATE_SEND_UIDATA");
fromRadioScratch.which_payload_variant = meshtastic_FromRadio_deviceuiConfig_tag;
fromRadioScratch.deviceuiConfig = uiconfig;
state = STATE_SEND_OWN_NODEINFO;
@@ -664,4 +664,4 @@ int PhoneAPI::onNotify(uint32_t newValue)
}
return timeout ? -1 : 0; // If we timed out, MeshService should stop iterating through observers as we just removed one
}
}