remove some debug messages

This commit is contained in:
Michael Stapelberg
2010-11-27 18:05:45 +01:00
parent 2c3e5dbc65
commit 0cfebcb5b6
4 changed files with 0 additions and 13 deletions

View File

@ -298,21 +298,17 @@ void level_down() {
static void mark_unmapped(Con *con) {
Con *current;
DLOG("marking container %p unmapped\n", con);
con->mapped = false;
TAILQ_FOREACH(current, &(con->nodes_head), nodes)
mark_unmapped(current);
if (con->type == CT_WORKSPACE) {
TAILQ_FOREACH(current, &(con->floating_head), floating_windows) {
DLOG("Marking unmapped for floating %p\n", current);
current->mapped = false;
Con *child = TAILQ_FIRST(&(current->nodes_head));
DLOG(" unmapping floating child %p\n", child);
child->mapped = false;
}
}
DLOG("mark_unmapped done\n");
}
/*