mirror of
https://github.com/ziglang/zig.git
synced 2025-02-14 16:40:17 +00:00
test_runner: fix missing newline in log
This commit is contained in:
parent
02886a8b93
commit
f4dde4d109
@ -103,6 +103,6 @@ pub fn log(
|
||||
log_err_count += 1;
|
||||
}
|
||||
if (@enumToInt(message_level) <= @enumToInt(std.testing.log_level)) {
|
||||
std.debug.print("[{}] ({}): " ++ format, .{ @tagName(scope), @tagName(message_level) } ++ args);
|
||||
std.debug.print("[{}] ({}): " ++ format ++ "\n", .{ @tagName(scope), @tagName(message_level) } ++ args);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user