diff --git a/lib/std/log.zig b/lib/std/log.zig index 28a377462634b0c29cf4cea46de3aa0b46dffb78..11a8d1fed2f09bbc12ddb5e974cb0555f513ce7a 100644 --- a/lib/std/log.zig +++ b/lib/std/log.zig @@ -110,7 +110,7 @@ fn log( const held = std.debug.getStderrMutex().acquire(); defer held.release(); const stderr = std.io.getStdErr().writer(); - nosuspend stderr.print(format, args) catch return; + nosuspend stderr.print(format ++ "\n", args) catch return; } } }