diff --git a/src/main.c b/src/main.c index 56877f4..9c3bce9 100644 --- a/src/main.c +++ b/src/main.c @@ -125,11 +125,8 @@ void fifo_handle(const char *line) { command = to_delimiter(line, &loc, ' '); - bar_log(LOG_INFO, "fifo_handle: command: '%s'", command); - if (STRING_EQUAL(command, "status")) { char *status = to_delimiter(line, &loc, '\n'); - bar_log(LOG_INFO, "fifo_handle: status: '%s'", status); struct Monitor *pos; wl_list_for_each(pos, &monitors, link) { bar_set_status(pos->bar, status); @@ -142,10 +139,7 @@ void fifo_handle(const char *line) { } void fifo_in(int fd, short mask, void *data) { - //bar_log(LOG_INFO, "fifo_in: start"); - if (mask & POLLERR) { - bar_log(LOG_INFO, "fifo_in: POLLERR"); events_remove(events, fd); char *default_status = string_create("dwl %.1f", VERSION); struct Monitor *pos; @@ -162,19 +156,15 @@ void fifo_in(int fd, short mask, void *data) { char *buffer = NULL; size_t size = 0; while (1) { - if (getline(&buffer, &size, fifo_file) == -1) { - //bar_log(LOG_INFO, "fifo_in: breaking"); + if (getline(&buffer, &size, fifo_file) == -1) break; - } - //bar_log(LOG_INFO, "fifo_in: '%s'", buffer); fifo_handle(buffer); } free(buffer); fclose(fifo_file); close(new_fd); - //bar_log(LOG_INFO, "fifo_in: done"); } void fifo_setup(void) { diff --git a/src/render.c b/src/render.c index 9e3308b..b920c12 100644 --- a/src/render.c +++ b/src/render.c @@ -43,7 +43,6 @@ void basic_component_destroy(struct BasicComponent *component) { } int basic_component_is_clicked(struct BasicComponent *component, double x, double y) { - bar_log(LOG_INFO, "basic_component_is_clicked: %.1f x %.1f in %d x %d", x, y, component->x, component->x+component->width); return (x > component->x && y > component->y && x < (component->x + component->width) && y < (component->y + component->height)); }