diff options
author | Yuta Doi <yuta-d@witz-inc.co.jp> | 2017-11-09 14:25:57 +0900 |
---|---|---|
committer | Yuta Doi <yuta-d@witz-inc.co.jp> | 2017-11-09 14:25:57 +0900 |
commit | 2b97202f86c492be91de83a93b513384871f321d (patch) | |
tree | 22b311682f202290ecc8ddd8ee1d24da24dd173d | |
parent | 7879eaa87df698098b4ac250d36dbc41f63627d2 (diff) |
Fix the error log on windowmanager initialization
Fix the bug which is that windowmanager outputs the error log
on the initialization.
Bug-AGL: SPEC-925
Change-Id: I87b20cc7840ef7241ca56ecab440f52333b1753c
Signed-off-by: Yuta Doi <yuta-d@witz-inc.co.jp>
-rw-r--r-- | src/wayland.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wayland.cpp b/src/wayland.cpp index bb34a4c..4a723e5 100644 --- a/src/wayland.cpp +++ b/src/wayland.cpp @@ -256,7 +256,7 @@ void controller::controller_screen(uint32_t id, void controller::controller_layer(uint32_t id) { HMI_DEBUG("wm", "compositor::controller @ %p layer %u (%x)", this->proxy.get(), id, id); if (this->layers.find(id) != this->layers.end()) { - HMI_ERROR("wm", "Someone created a layer without asking US! (%d)", id); + HMI_DEBUG("wm", "WindowManager has created layer %u (%x) already", id, id); } else { auto &l = this->layers[id] = std::make_unique<struct layer>(id, this); l->clear_surfaces(); |