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

@@ -88,13 +88,13 @@ bool QMA6100PSingleton::init(ScanI2C::FoundDevice device)
bool status = begin(device.address.address, &Wire);
#endif
if (status != true) {
LOG_WARN("QMA6100P init begin failed\n");
LOG_WARN("QMA6100P init begin failed");
return false;
}
delay(20);
// SW reset to make sure the device starts in a known state
if (softwareReset() != true) {
LOG_WARN("QMA6100P init reset failed\n");
LOG_WARN("QMA6100P init reset failed");
return false;
}
delay(20);
@@ -180,4 +180,4 @@ bool QMA6100PSingleton::setWakeOnMotion()
return true;
}
#endif
#endif