summaryrefslogtreecommitdiff
path: root/src/lua
diff options
context:
space:
mode:
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);