From fbe4d57bae86e591359cd0ca9f7c5dff498c7983 Mon Sep 17 00:00:00 2001 From: 190n Date: Thu, 27 Feb 2025 12:53:35 -0800 Subject: [PATCH] chore: disable TimerList logging by default (#17770) --- src/bun.js/api/Timer.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bun.js/api/Timer.zig b/src/bun.js/api/Timer.zig index 0ac80c4c21..e113ce3b4e 100644 --- a/src/bun.js/api/Timer.zig +++ b/src/bun.js/api/Timer.zig @@ -27,7 +27,7 @@ pub const TimeoutMap = std.AutoArrayHashMapUnmanaged( /// Array of linked lists of EventLoopTimers. Each list holds all the timers that will fire in the /// same millisecond, in the order they will fire. const TimerList = struct { - const log = bun.Output.scoped(.TimerList, false); + const log = bun.Output.scoped(.TimerList, true); // there might be a better data structure we could use here (the current one has some O(n) cases // to remove and add new lists), but cursory testing showed similar performance to the old // heap implementation