chore: change priority of some logs

This commit is contained in:
2022-06-15 01:18:45 -03:00
parent 7441af9582
commit a753912cb5
2 changed files with 7 additions and 7 deletions

View File

@@ -102,13 +102,13 @@ pub const FilePaths = struct {
};
pub fn readUndefined(log: anytype, comptime format: []const u8, args: anytype) u8 {
log.debug(format, args);
log.warn(format, args);
if (builtin.mode == .Debug) std.debug.panic("TODO: Implement I/O Register", .{});
return 0;
}
pub fn writeUndefined(log: anytype, comptime format: []const u8, args: anytype) void {
log.debug(format, args);
log.warn(format, args);
if (builtin.mode == .Debug) std.debug.panic("TODO: Implement I/O Register", .{});
}