Replaced Logger usage with LOG_x (#548)

This commit is contained in:
Ken Van Hoeylandt
2026-07-04 23:49:19 +02:00
committed by GitHub
parent ecad2248d9
commit 9d5993930d
162 changed files with 1776 additions and 1842 deletions
@@ -1,9 +1,9 @@
#include "TpagerPower.h"
#include <Bq25896.h>
#include <Tactility/Logger.h>
#include <tactility/log.h>
static const auto LOGGER = tt::Logger("TpagerPower");
constexpr auto* TAG = "TpagerPower";
TpagerPower::~TpagerPower() {}
@@ -66,7 +66,7 @@ void TpagerPower::powerOff() {
});
if (device == nullptr) {
LOGGER.error("BQ25896 not found");
LOG_E(TAG, "BQ25896 not found");
return;
}