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

@@ -458,11 +458,11 @@ void ScanI2CTwoWire::scanPort(I2CPort port, uint8_t *address, uint8_t asize)
i2cBus->endTransmission();
len = i2cBus->readBytes(info, 5);
if (len == 5 && memcmp(expectedInfo, info, len) == 0) {
LOG_INFO("NXP SE050 crypto chip found\n");
LOG_INFO("NXP SE050 crypto chip found");
type = NXP_SE050;
} else {
LOG_INFO("FT6336U touchscreen found\n");
LOG_INFO("FT6336U touchscreen found");
type = FT6336U;
}
break;
@@ -510,4 +510,4 @@ void ScanI2CTwoWire::logFoundDevice(const char *device, uint8_t address)
{
LOG_INFO("%s found at address 0x%x", device, address);
}
#endif
#endif