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,10 +1,10 @@
#include "TrackballDevice.h"
#include <Trackball/Trackball.h> // Driver
#include <Tactility/Logger.h>
#include <Tactility/lvgl/LvglSync.h>
#include <Tactility/settings/TrackballSettings.h>
#include <tactility/log.h>
static const auto LOGGER = tt::Logger("TrackballDevice");
constexpr auto* TAG = "TrackballDevice";
bool TrackballDevice::start() {
if (initialized) {
@@ -40,7 +40,7 @@ bool TrackballDevice::start() {
trackball::setEnabled(tbSettings.trackballEnabled);
tt::lvgl::unlock();
} else {
LOGGER.warn("Failed to acquire LVGL lock for trackball settings");
LOG_W(TAG, "Failed to acquire LVGL lock for trackball settings");
}
return true;