From e968e62c1def93011210969bed705f4f15f9e50b Mon Sep 17 00:00:00 2001 From: Altagos Date: Mon, 6 Jan 2025 15:58:52 +0100 Subject: [PATCH] changed info log to debug --- src/BVH.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/BVH.zig b/src/BVH.zig index f7d4a29..355d5bd 100644 --- a/src/BVH.zig +++ b/src/BVH.zig @@ -138,7 +138,7 @@ root: *Node, pub fn init(allocator: std.mem.Allocator, objects: hittable.HittableList, max_depth: usize) !BVH { defer @constCast(&objects).deinit(); - log.info("Creating BVH Tree with {} objects", .{objects.list.items.len}); + log.debug("Creating BVH Tree with {} objects", .{objects.list.items.len}); const root = try allocator.create(Node); try root.init(allocator, objects.list.items, max_depth, 0); -- 2.51.2