diff options
author | Yuta Doi <yuta-d@witz-inc.co.jp> | 2017-10-23 23:17:47 +0900 |
---|---|---|
committer | Jan-Simon Moeller <jsmoeller@linuxfoundation.org> | 2017-11-01 11:02:26 +0000 |
commit | 860d9537b74f6fe406d21d3da753a3d09b995557 (patch) | |
tree | 7c3156923f0b7499456764b4de8f6a68f685ddc0 /src/app.hpp | |
parent | be02238a0e92c74a13daaf516b5f379f29217eb8 (diff) |
Add debug message macros controlled by environment variable
Add a HMI_DEBUG macro to print debug messages.
It is controlled by the USE_HMI_DEBUG environment variable.
Change-Id: I3bc5bf2f3b0e9f5ee06f340053f29ad36e7d9dbb
Signed-off-by: Yuta Doi <yuta-d@witz-inc.co.jp>
Diffstat (limited to 'src/app.hpp')
-rw-r--r-- | src/app.hpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/app.hpp b/src/app.hpp index 9f8b7ce..1029aac 100644 --- a/src/app.hpp +++ b/src/app.hpp @@ -33,6 +33,7 @@ #include "policy.hpp" #include "result.hpp" #include "wayland.hpp" +#include "hmi-debug.h" namespace wl { struct display; @@ -76,7 +77,7 @@ struct id_allocator { this->id2name[sid] = name; // this->pending_surfaces.insert({sid}); this->name2id[name] = sid; - logdebug("allocated new id %u with name %s", sid, name.c_str()); + HMI_DEBUG("wm", "allocated new id %u with name %s", sid, name.c_str()); return sid; } |