aboutsummaryrefslogtreecommitdiffstats
path: root/src/applist.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/applist.cpp')
-rw-r--r--src/applist.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/applist.cpp b/src/applist.cpp
index d3a839c..19c2106 100644
--- a/src/applist.cpp
+++ b/src/applist.cpp
@@ -400,6 +400,7 @@ bool AppList::setEndDrawFinished(unsigned req_num, const string &appid, const st
{
if (y.appid == appid && y.role == role)
{
+ HMI_SEQ_INFO(req_num, "Role %s finish redraw", y.role.c_str());
y.end_draw_finished = true;
result = true;
}
@@ -511,10 +512,11 @@ void AppList::reqDump()
for (const auto &y : x.sync_draw_req)
{
DUMP(
- "Action : (APPID :%s, ROLE :%s, AREA :%s, END_DRAW_FINISHED: %d)",
+ "Action : (APPID :%s, ROLE :%s, AREA :%s, VISIBLE : %s, END_DRAW_FINISHED: %d)",
y.appid.c_str(),
y.role.c_str(),
y.area.c_str(),
+ (y.visible == TaskVisible::INVISIBLE) ? "invisible" : "visible",
y.end_draw_finished);
}
}