diff options
author | Kazumasa Mitsunari <knimitz@witz-inc.co.jp> | 2019-02-18 21:19:13 +0900 |
---|---|---|
committer | Kazumasa Mitsunari <knimitz@witz-inc.co.jp> | 2019-02-18 12:24:58 +0000 |
commit | b36dd41d120da747f6710fea38c3d3fcbc6258db (patch) | |
tree | e7db60e269a70fbe275b67f433e32062eb614991 /src | |
parent | 3a090e43fdeb3c86f253c39a23d35358680565f5 (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>
Diffstat (limited to 'src')
-rw-r--r-- | src/wm_layer.cpp | 4 |
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 ====="); } |