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
+3 -3
View File
@@ -1,14 +1,14 @@
#include "PwmBacklight.h"
#include <Tactility/Logger.h>
#include <Tactility/service/gps/GpsService.h>
#include <Tactility/TactilityCore.h>
#include <tactility/log.h>
static const auto LOGGER = tt::Logger("T-Dongle S3");
constexpr auto* TAG = "T-Dongle S3";
bool initBoot() {
if (!driver::pwmbacklight::init(GPIO_NUM_38, 12000)) {
LOGGER.error("Backlight init failed");
LOG_E(TAG, "Backlight init failed");
return false;
}