aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKazumasa Mitsunari <knimitz@witz-inc.co.jp>2018-06-18 13:40:35 +0900
committerKazumasa Mitsunari <knimitz@witz-inc.co.jp>2018-06-18 13:40:35 +0900
commitfb8bc594d8aafe8658502f15c137f85f592ac512 (patch)
tree11efdb285310e6f4281301c11ae579bdb3727c4b
parente3dd2dd3952bf3ba27858422b1800b31ef8e2ee0 (diff)
Show debug message when incorrect role
Change-Id: I5be6985da78314d293f8ccde2dd61ea2f3664e1c Signed-off-by: Kazumasa Mitsunari <knimitz@witz-inc.co.jp>
-rw-r--r--src/wm_client.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wm_client.cpp b/src/wm_client.cpp
index 75087cc..e226791 100644
--- a/src/wm_client.cpp
+++ b/src/wm_client.cpp
@@ -84,7 +84,7 @@ unsigned WMClient::surfaceID(const string &role) const
{
if (0 == this->role2surface.count(role))
{
- HMI_NOTICE("wm", "invalid role");
+ HMI_NOTICE("wm", "invalid role %s : appID : %s", role.c_str(), this->id.c_str());
return INVALID_SURFACE_ID;
}
return this->role2surface.at(role);