chore: disable TimerList logging by default (#17770)

This commit is contained in:
190n
2025-02-27 12:53:35 -08:00
committed by GitHub
parent f4937678e4
commit fbe4d57bae

View File

@@ -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