mirror of
https://github.com/meshtastic/firmware.git
synced 2026-01-15 22:37:35 +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:
@@ -17,10 +17,10 @@ bool STK8XXXSensor::init()
|
||||
attachInterrupt(
|
||||
digitalPinToInterrupt(STK8XXX_INT), [] { STK_IRQ = true; }, RISING);
|
||||
|
||||
LOG_DEBUG("STK8XXXSensor::init ok\n");
|
||||
LOG_DEBUG("STK8XXXSensor::init ok");
|
||||
return true;
|
||||
}
|
||||
LOG_DEBUG("STK8XXXSensor::init failed\n");
|
||||
LOG_DEBUG("STK8XXXSensor::init failed");
|
||||
return false;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user