terminal: more accidental logging

This commit is contained in:
Mitchell Hashimoto
2024-03-22 20:01:27 -07:00
parent a301f7da06
commit 25a5e078fa

View File

@ -218,7 +218,7 @@ pub fn printRepeat(self: *Terminal, count_req: usize) !void {
} }
pub fn print(self: *Terminal, c: u21) !void { pub fn print(self: *Terminal, c: u21) !void {
log.debug("print={x} y={} x={}", .{ c, self.screen.cursor.y, self.screen.cursor.x }); // log.debug("print={x} y={} x={}", .{ c, self.screen.cursor.y, self.screen.cursor.x });
// If we're not on the main display, do nothing for now // If we're not on the main display, do nothing for now
if (self.status_display != .main) return; if (self.status_display != .main) return;