aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarcus Fritzsch <marcus_fritzsch@mentor.com>2017-07-28 14:08:43 +0200
committerMarcus Fritzsch <marcus_fritzsch@mentor.com>2017-08-08 17:24:00 +0200
commit979f3c80a66129cadc9260fc52eb5eab2fb73622 (patch)
tree550d6b5d4534f9d091547e9acbb6b233fbb2eff3
parent743884774843259d92ec2b3745caa7e91805af53 (diff)
app: logdebug() layer setup
Signed-off-by: Marcus Fritzsch <marcus_fritzsch@mentor.com>
-rw-r--r--src/app.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/app.cpp b/src/app.cpp
index 939d569..84ebfba 100644
--- a/src/app.cpp
+++ b/src/app.cpp
@@ -199,7 +199,7 @@ int App::init_layout() {
auto &l = layers[i.layer_id];
l->set_destination_rectangle(0, 0, o->width, o->height);
l->set_visibility(1);
- DB("Setting up layer " << i.layer_id << " for surfaces " << i.id_min << " through " << i.id_max);
+ logdebug("Setting up layer %s (%d) for surfaces %d-%d", i.name.c_str(), i.layer_id, i.id_min, i.id_max);
ls.push_back(unsigned(i.layer_id));
}