terminal: remove old logs

This commit is contained in:
Mitchell Hashimoto
2024-02-29 09:31:22 -08:00
parent 06376fcb0b
commit e903d5ed22
2 changed files with 2 additions and 2 deletions

View File

@ -1136,7 +1136,7 @@ pub fn clone(self: *Screen, alloc: Allocator, top: RowIndex, bottom: RowIndex) !
assert(dst[1].len == 0);
// Perform the copy
std.log.warn("copy bytes={}", .{src[0].len + src[1].len});
// std.log.warn("copy bytes={}", .{src[0].len + src[1].len});
fastmem.copy(StorageCell, dst[0], src[0]);
fastmem.copy(StorageCell, dst[0][src[0].len..], src[1]);

View File

@ -200,7 +200,7 @@ pub const Page = struct {
// This is a memcpy. We may want to investigate if there are
// faster ways to do this (i.e. copy-on-write tricks) but I suspect
// they'll be slower. I haven't experimented though.
std.log.warn("copy bytes={}", .{self.memory.len});
// std.log.warn("copy bytes={}", .{self.memory.len});
fastmem.copy(u8, result.memory, self.memory);
return result;