| ... | @@ -124,7 +124,10 @@ pub fn log( | ... | @@ -124,7 +124,10 @@ pub fn log( |
| 124 | log_err_count += 1; | 124 | log_err_count += 1; |
| 125 | } | 125 | } |
| 126 | if (@enumToInt(message_level) <= @enumToInt(std.testing.log_level)) { | 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 | |