mirror of
https://github.com/ziglang/zig.git
synced 2026-02-15 05:48:31 +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…
x
Reference in New Issue
Block a user