change many LOG/printf messages to use DLOG
This commit is contained in:
@ -619,7 +619,7 @@ int handle_expose_event(void *data, xcb_connection_t *conn, xcb_expose_event_t *
|
||||
x_draw_decoration(parent);
|
||||
|
||||
TAILQ_FOREACH(con, &(parent->nodes_head), nodes) {
|
||||
LOG("expose for con %p / %s\n", con, con->name);
|
||||
DLOG("expose for con %p / %s\n", con, con->name);
|
||||
if (con->window)
|
||||
x_draw_decoration(con);
|
||||
}
|
||||
@ -627,7 +627,7 @@ int handle_expose_event(void *data, xcb_connection_t *conn, xcb_expose_event_t *
|
||||
/* We also need to render the decorations of other Cons nearby the Con
|
||||
* itself to not get overlapping decorations */
|
||||
TAILQ_FOREACH(con, &(parent->parent->nodes_head), nodes) {
|
||||
LOG("expose for con %p / %s\n", con, con->name);
|
||||
DLOG("expose for con %p / %s\n", con, con->name);
|
||||
if (con->window)
|
||||
x_draw_decoration(con);
|
||||
}
|
||||
|
Reference in New Issue
Block a user