From bacc733fc3503ea1490591681b2063bb4cdde7a7 Mon Sep 17 00:00:00 2001 From: kamkow1 Date: Sun, 15 Jun 2025 11:18:33 +0200 Subject: [PATCH] Make watcher not vomit into the terminal --- watcher.c | 1 - 1 file changed, 1 deletion(-) diff --git a/watcher.c b/watcher.c index ccf47e4..303391f 100644 --- a/watcher.c +++ b/watcher.c @@ -100,7 +100,6 @@ void watcher_add_all(Watcher *w, char *root) char path[PATH_MAX]; snprintf(path, sizeof(path), "%s/%s", root, entry->d_name); - LOGI("%s\n", path); for (size_t i = 0; i < w->ignored.count; i++) { if (strcmp(w->ignored.items[i], path) == 0) {