From e1ec32caea7b52a7b0a8f40ec2e89ee419a4e775 Mon Sep 17 00:00:00 2001 From: Jarred Sumner Date: Tue, 1 Jul 2025 20:33:34 -0700 Subject: [PATCH] Fix incorrect comptime conditional --- src/watcher/INotifyWatcher.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/watcher/INotifyWatcher.zig b/src/watcher/INotifyWatcher.zig index cba39c4e6c..9a180c3dd8 100644 --- a/src/watcher/INotifyWatcher.zig +++ b/src/watcher/INotifyWatcher.zig @@ -192,7 +192,7 @@ pub fn read(this: *INotifyWatcher) bun.JSC.Maybe([]const *align(1) Event) { this.eventlist_ptrs[count] = event; i += event.size(); count += 1; - if (!Environment.enable_logs) + if (Environment.enable_logs) log("{} read event {} {} {} {}", .{ this.fd, event.watch_descriptor,