From b36dd41d120da747f6710fea38c3d3fcbc6258db Mon Sep 17 00:00:00 2001 From: Kazumasa Mitsunari Date: Mon, 18 Feb 2019 21:19:13 +0900 Subject: 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 --- src/wm_layer.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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 ====="); } -- cgit 1.2.3-korg