aboutsummaryrefslogtreecommitdiffstats
path: root/src/applist.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/applist.cpp')
-rw-r--r--src/applist.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/applist.cpp b/src/applist.cpp
index 0267eb7..391a3ce 100644
--- a/src/applist.cpp
+++ b/src/applist.cpp
@@ -82,7 +82,7 @@ void AppList::removeClient(const string &appid)
{
std::lock_guard<std::mutex> lock(this->mtx);
this->app2client.erase(appid);
- HMI_INFO("wm", "Remove client %s", appid.c_str());
+ HMI_INFO("Remove client %s", appid.c_str());
}
/**
@@ -111,7 +111,7 @@ void AppList::removeSurface(unsigned surface){
{
ret = x.second->removeSurfaceIfExist(surface);
if(ret){
- HMI_DEBUG("wm", "remove surface %d from Client %s finish",
+ HMI_DEBUG("remove surface %d from Client %s finish",
surface, x.second->appID().c_str());
break;
}
@@ -189,7 +189,7 @@ WMError AppList::popFloatingSurface(unsigned pid, unsigned *surface)
});
if (fwd_itr != this->floating_surfaces.cend())
{
- HMI_INFO("wm", "pop floating surface: %d", *surface);
+ HMI_INFO("pop floating surface: %d", *surface);
}
this->floating_surfaces.erase(fwd_itr, this->floating_surfaces.end());
return ret;
@@ -199,7 +199,7 @@ WMError AppList::popFloatingSurface(unsigned pid, unsigned *surface)
WMError AppList::popFloatingSurface(const string &appid, unsigned *surface)
{
- HMI_ERROR("wm", "This function is not implemented");
+ HMI_ERROR("This function is not implemented");
return WMError::SUCCESS;
}
@@ -223,7 +223,7 @@ void AppList::removeFloatingSurface(unsigned surface)
return x.surface_id == surface;
});
if(fwd_itr != this->floating_surfaces.cend()){
- HMI_INFO("wm", "remove floating surface: %d", surface);
+ HMI_INFO("remove floating surface: %d", surface);
}
this->floating_surfaces.erase(fwd_itr, this->floating_surfaces.end());
}
@@ -231,7 +231,7 @@ void AppList::removeFloatingSurface(unsigned surface)
WMError AppList::appendRole(const string &id, const string &role, unsigned surface)
{
WMError wm_err = WMError::NO_ENTRY;
- HMI_ERROR("wm", "This function is disabled");
+ HMI_ERROR("This function is disabled");
/* if (this->contains(id))
{
auto x = this->lookUpClient(id);