mirror of
https://github.com/meshtastic/firmware.git
synced 2026-01-17 15:27:29 +00:00
remove newline from logging statements. (#5022)
remove newline from logging statements in code. The LOG_* functions will now magically add it at the end. --------- Co-authored-by: Ben Meadors <benmmeadors@gmail.com>
This commit is contained in:
@@ -13,10 +13,10 @@ bool MPU6050Sensor::init()
|
||||
sensor.setMotionDetectionDuration(20);
|
||||
sensor.setInterruptPinLatch(true); // Keep it latched. Will turn off when reinitialized.
|
||||
sensor.setInterruptPinPolarity(true);
|
||||
LOG_DEBUG("MPU6050Sensor::init ok\n");
|
||||
LOG_DEBUG("MPU6050Sensor::init ok");
|
||||
return true;
|
||||
}
|
||||
LOG_DEBUG("MPU6050Sensor::init failed\n");
|
||||
LOG_DEBUG("MPU6050Sensor::init failed");
|
||||
return false;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user