aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKazumasa Mitsunari <knimitz@witz-inc.co.jp>2019-02-18 21:19:13 +0900
committerKazumasa Mitsunari <knimitz@witz-inc.co.jp>2019-03-22 06:37:08 +0000
commitedb09fbe52254d181a3d2612cd9a281ef87e027c (patch)
tree9dea46f67cc68c3331d270c8c4a751019b1b8995
parent8c455d3019d238494dbae5b5ec876e24ee5d616e (diff)
Show [Current] and [To be] in WMLayer log
To look the log more clear, modify the message of log. Change-Id: I8c4fc34e69660afcc459ee3877e41d8d03bc31df Signed-off-by: Kazumasa Mitsunari <knimitz@witz-inc.co.jp>
-rw-r--r--src/wm_layer.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/wm_layer.cpp b/src/wm_layer.cpp
index 66fb0a2..4eceb43 100644
--- a/src/wm_layer.cpp
+++ b/src/wm_layer.cpp
@@ -251,8 +251,10 @@ void WMLayer::dump()
{
DUMP("===== wm layer status =====");
DUMP("Layer :%s", this->name.c_str());
- this->tmp_state.dump();
+ DUMP(" [Current]");
this->state.dump();
+ DUMP(" [To be]");
+ this->tmp_state.dump();
DUMP("===== wm layer status end =====");
}