aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKazumasa Mitsunari <knimitz@witz-inc.co.jp>2018-09-11 12:03:05 +0900
committerKazumasa Mitsunari <knimitz@witz-inc.co.jp>2018-09-11 12:03:05 +0900
commit845d2b5ed9f70d110fe731b8c5d17694523ce0e5 (patch)
treee34b2787e23d122e353c465cbabbf4426c3e1d45
parenta896eec3edb9368f717b4d098e20253af244b17b (diff)
Fix output debug message
Change-Id: I4ada8c5630666accf15b94312282b67a748b1c70 Signed-off-by: Kazumasa Mitsunari <knimitz@witz-inc.co.jp>
-rw-r--r--src/window_manager.cpp2
-rw-r--r--src/wm_layer_control.cpp1
2 files changed, 1 insertions, 2 deletions
diff --git a/src/window_manager.cpp b/src/window_manager.cpp
index 79a27d1..dec7752 100644
--- a/src/window_manager.cpp
+++ b/src/window_manager.cpp
@@ -744,7 +744,7 @@ void WindowManager::surface_created(uint32_t surface_id)
{
auto client = g_app_list.lookUpClient(appid);
WMError ret = client->addSurface(surface_id);
- HMI_INFO("Add surface %d to \"%s\"", appid.c_str());
+ HMI_INFO("Add surface %d to \"%s\"", surface_id, appid.c_str());
if(ret != WMError::SUCCESS)
{
HMI_ERROR("Failed to add surface to client %s", client->appID().c_str());
diff --git a/src/wm_layer_control.cpp b/src/wm_layer_control.cpp
index 4cfedd9..acf41f6 100644
--- a/src/wm_layer_control.cpp
+++ b/src/wm_layer_control.cpp
@@ -235,7 +235,6 @@ WMError LayerControl::renderLayers()
for(const auto& i : ivi_l_ids)
{
id_array[count] = i;
- HMI_DEBUG("check render order %d", i);
++count;
}