diff options
author | Kazumasa Mitsunari <knimitz@witz-inc.co.jp> | 2018-06-19 11:36:50 +0900 |
---|---|---|
committer | Kazumasa Mitsunari <knimitz@witz-inc.co.jp> | 2018-06-19 11:36:50 +0900 |
commit | 37ff88e958898647db10629c0db50e0c8a4eb9a9 (patch) | |
tree | 01deca0029686867112e17761ce5be1f9ecbe624 /src/wm_client.cpp | |
parent | bbf684fb596414141190958dbd0b0abcc0f7f6d3 (diff) |
Show debug message when surface is removed
Change-Id: Icffbc5e1193486f7fa9825738bbc1b3798fdbc18
Signed-off-by: Kazumasa Mitsunari <knimitz@witz-inc.co.jp>
Diffstat (limited to 'src/wm_client.cpp')
-rw-r--r-- | src/wm_client.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/wm_client.cpp b/src/wm_client.cpp index e226791..f05bd17 100644 --- a/src/wm_client.cpp +++ b/src/wm_client.cpp @@ -129,6 +129,8 @@ bool WMClient::removeSurfaceIfExist(unsigned surface) { if (surface == x.second) { + HMI_INFO("wm", "Remove surface from client %s: role %s, surface: %d", + this->id.c_str(), x.first.c_str(), x.second); this->role2surface.erase(x.first); ret = true; break; |