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,6 +1,5 @@
#include <Tactility/lvgl/Statusbar.h>
#include <Tactility/Logger.h>
#include <Tactility/Mutex.h>
#include <Tactility/Timer.h>
#include <Tactility/hal/power/PowerDevice.h>
@@ -27,9 +26,11 @@
#include <cstring>
#include <tactility/log.h>
namespace tt::service::statusbar {
static const auto LOGGER = Logger("StatusbarService");
constexpr auto* TAG = "StatusbarService";
// GPS
extern const ServiceManifest manifest;
@@ -302,7 +303,7 @@ public:
bool onStart(ServiceContext& serviceContext) override {
if (lv_screen_active() == nullptr) {
LOGGER.error("No display found");
LOG_E(TAG, "No display found");
return false;
}