From 287344c272ace71ef3a0d6629f61b4eaa7f23fd2 Mon Sep 17 00:00:00 2001 From: Bill Thiede Date: Sun, 31 Jul 2022 16:36:33 -0700 Subject: [PATCH] Minor debug logging change. --- zigrtiow/src/main.zig | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/zigrtiow/src/main.zig b/zigrtiow/src/main.zig index b27e58a..6756454 100644 --- a/zigrtiow/src/main.zig +++ b/zigrtiow/src/main.zig @@ -34,7 +34,7 @@ pub fn main() anyerror!void { const stdout = std.io.getStdOut(); - info("Writing image {d}x{d}\n", .{ image_width, image_height }); + info("Writing image {d}x{d}", .{ image_width, image_height }); try stdout.writer().print("P3\n{d} {d}\n255\n", .{ image_width, image_height }); var j: isize = image_height - 1; @@ -50,6 +50,7 @@ pub fn main() anyerror!void { try write_color(pixel_color); } } + info("Done", .{}); } test {