this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

changed info log to debug

+1 -1
+1 -1
src/BVH.zig
··· 138 138 139 139 pub fn init(allocator: std.mem.Allocator, objects: hittable.HittableList, max_depth: usize) !BVH { 140 140 defer @constCast(&objects).deinit(); 141 - log.info("Creating BVH Tree with {} objects", .{objects.list.items.len}); 141 + log.debug("Creating BVH Tree with {} objects", .{objects.list.items.len}); 142 142 143 143 const root = try allocator.create(Node); 144 144 try root.init(allocator, objects.list.items, max_depth, 0);