adding icd base

This commit is contained in:
2025-11-04 17:44:10 +01:00
parent 795b38bdcc
commit 12ad577c25
6 changed files with 7202 additions and 31 deletions

View File

@@ -47,7 +47,7 @@ pub fn log(comptime level: std.log.Level, comptime scope: @Type(.enum_literal),
std.fmt.comptimePrint("({s}): ", .{scope_name});
};
const prefix = "[" ++ comptime level.asText() ++ "] ";
const prefix = std.fmt.comptimePrint("{s: <8}", .{"[" ++ comptime level.asText() ++ "] "});
const level_color: std.Io.tty.Color = switch (level) {
.info => .blue,