aboutsummaryrefslogtreecommitdiffstats
path: root/src/wm_layer.cpp
diff options
context:
space:
mode:
authorKazumasa Mitsunari <knimitz@witz-inc.co.jp>2018-08-22 13:43:42 +0900
committerKazumasa Mitsunari <knimitz@witz-inc.co.jp>2018-08-22 14:04:23 +0900
commitc3291c967516a188789a860821471d8c872fbb47 (patch)
tree9a0af6b1e239d3486f750a04906473563dab6786 /src/wm_layer.cpp
parent58da0c77b98af1b771e4af28b42d0a3ddec09877 (diff)
Fix util function HMI_*
To reduce coding, change HMI_* Change-Id: Ib28b6a3c2756253e665498e459f5e1e165095941 Signed-off-by: Kazumasa Mitsunari <knimitz@witz-inc.co.jp>
Diffstat (limited to 'src/wm_layer.cpp')
-rw-r--r--src/wm_layer.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/wm_layer.cpp b/src/wm_layer.cpp
index 7b67042..07b41e1 100644
--- a/src/wm_layer.cpp
+++ b/src/wm_layer.cpp
@@ -58,19 +58,19 @@ unsigned LayerSetting::getNewLayerID(const string& role)
}
// generate new ivi layer id
ret = id_list.back() + 1;
- HMI_INFO("wm", "generate ivi_layer_id : %d on the layer: %s", ret, this->name.c_str());
+ HMI_INFO("generate ivi_layer_id : %d on the layer: %s", ret, this->name.c_str());
auto id_found = std::find(id_list.begin(), id_list.end(), ret);
if( (ret > this->idEnd()) || (id_found != id_list.cend()) )
{
- HMI_NOTICE("wm", "id %d is not available then generate new id", ret);
+ HMI_NOTICE("id %d is not available then generate new id", ret);
ret = 0;
for(unsigned i = this->idBegin(); i < this->idEnd(); i++)
{
auto ret_found = std::find(id_list.begin(), id_list.end(), i);
if(ret_found == id_list.cend())
{
- HMI_INFO("wm", "set new id: %d", i);
+ HMI_INFO("set new id: %d", i);
ret = i;
break;
}
@@ -83,7 +83,7 @@ unsigned LayerSetting::getNewLayerID(const string& role)
}
else
{
- HMI_ERROR("wm", "failed to get New ID");
+ HMI_ERROR("failed to get New ID");
}
return ret;
}