Make small DLOG improvements

- manage_window: log the window in the start of the function so that the
reader knows what the rest of the messages refer to, even if the
function exits prematurely.
- con_is_floating: Message is spammy
This commit is contained in:
Orestis Floros
2019-03-30 13:43:36 +02:00
parent 8b88f00117
commit cc9b227978
2 changed files with 2 additions and 3 deletions

View File

@ -539,7 +539,6 @@ bool con_is_internal(Con *con) {
*/
bool con_is_floating(Con *con) {
assert(con != NULL);
DLOG("checking if con %p is floating\n", con);
return (con->floating >= FLOATING_AUTO_ON);
}