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,5 +1,6 @@
#include <Tactility/LogMessages.h>
#include <Tactility/TactilityCore.h>
#include <tactility/log.h>
#include <driver/ledc.h>
constexpr auto* TAG = "Waveshare";
@@ -38,7 +39,7 @@ void initBacklight() {
}
bool initBoot() {
ESP_LOGI(TAG, LOG_MESSAGE_POWER_ON_START);
LOG_I(TAG, LOG_MESSAGE_POWER_ON_START);
initBacklight();
return true;
}