| author | |
| committer | |
| log | a08b0fa706f79a506b219d59a0b58a6d5761dcd7 |
| tree | abebf10b42d8d892e791dfd5e1fec814687a045a |
| parent | 7cbd586ace46a8e8cebab660ebca3cfc049305d9 |
1 files changed, 4 insertions(+), 1 deletions(-)
lib/test_runner.zig+4-1| ... | ... | @@ -124,7 +124,10 @@ pub fn log( |
| 124 | 124 | log_err_count += 1; |
| 125 | 125 | } |
| 126 | 126 | if (@enumToInt(message_level) <= @enumToInt(std.testing.log_level)) { |
| 127 | std.debug.print("[{s}] ({s}): " ++ format ++ "\n", .{ @tagName(scope), @tagName(message_level) } ++ args); | |
| 127 | std.debug.print( | |
| 128 | "[" ++ @tagName(scope) ++ "] (" ++ @tagName(message_level) ++ "): " ++ format ++ "\n", | |
| 129 | args, | |
| 130 | ); | |
| 128 | 131 | } |
| 129 | 132 | } |
| 130 | 133 |