summaryrefslogtreecommitdiff
path: root/src/lua
diff options
context:
space:
mode:
authorailurux <ailuruxx@gmail.com>2024-03-28 15:36:27 +1100
committerailurux <ailuruxx@gmail.com>2024-03-28 15:36:27 +1100
commit78c708e9390047ef24ccd8fbe0cd2d38ff758654 (patch)
treee8d3c39ecaabe49542e639f475c04f6e65690ecf /src/lua
parent10441162c4323d6e41f54425a8d7641fda18f711 (diff)
downloadtangara-fw-78c708e9390047ef24ccd8fbe0cd2d38ff758654.tar.gz
Fix log message
Diffstat (limited to 'src/lua')
-rw-r--r--src/lua/lua_theme.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lua/lua_theme.cpp b/src/lua/lua_theme.cpp
index 32d6f660..fe69aa6a 100644
--- a/src/lua/lua_theme.cpp
+++ b/src/lua/lua_theme.cpp
@@ -59,7 +59,7 @@ static auto set_theme(lua_State* L) -> int {
// Style
lv_style_t* style = luavgl_to_style(L, -1);
if (style == NULL) {
- ESP_LOGI(kTag, "Style was null or malformed");
+ ESP_LOGI("lua_theme", "Style was null or malformed");
return 0;
} else {
ui::themes::Theme::instance()->AddStyle(class_name, selector, style);