From cbfa56bb1bcdb71c83b8a72f6f20857ab70e93f2 Mon Sep 17 00:00:00 2001 From: Tim Culverhouse Date: Fri, 3 May 2024 12:12:01 -0500 Subject: [PATCH] log: remove cursor log lines --- src/Vaxis.zig | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/Vaxis.zig b/src/Vaxis.zig index 6b372d0..7130f5a 100644 --- a/src/Vaxis.zig +++ b/src/Vaxis.zig @@ -476,7 +476,6 @@ pub fn render(self: *Vaxis) !void { _ = try tty.write(cell.char.grapheme); cursor_pos.col = col + w; cursor_pos.row = row; - log.debug("cursor: row: {}, col: {}, grapheme: '{s}'", .{ cursor_pos.row, cursor_pos.col, cell.char.grapheme }); } if (self.screen.cursor_vis) { if (tty.state.alt_screen) { @@ -528,7 +527,6 @@ pub fn render(self: *Vaxis) !void { ); self.screen_last.cursor_shape = self.screen.cursor_shape; } - log.debug("tty_cursor: row: {}, col: {}", .{ self.tty.?.state.cursor.row, self.tty.?.state.cursor.col }); } fn enableKittyKeyboard(self: *Vaxis, flags: Key.KittyFlags) !void {