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-02-18 12:24:58 +0000
commitb36dd41d120da747f6710fea38c3d3fcbc6258db (patch)
treee7db60e269a70fbe275b67f433e32062eb614991
parent3a090e43fdeb3c86f253c39a23d35358680565f5 (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 =====");
}