mirror of
https://github.com/meshtastic/firmware.git
synced 2026-01-01 07:30:33 +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:
@@ -14,10 +14,10 @@ bool LSM6DS3Sensor::init()
|
||||
// Duration is number of occurances needed to trigger, higher threshold is less sensitive
|
||||
sensor.enableWakeup(config.display.wake_on_tap_or_motion, 1, LSM6DS3_WAKE_THRESH);
|
||||
|
||||
LOG_DEBUG("LSM6DS3Sensor::init ok\n");
|
||||
LOG_DEBUG("LSM6DS3Sensor::init ok");
|
||||
return true;
|
||||
}
|
||||
LOG_DEBUG("LSM6DS3Sensor::init failed\n");
|
||||
LOG_DEBUG("LSM6DS3Sensor::init failed");
|
||||
return false;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user