terminal: remove unused debug log

This commit is contained in:
Mitchell Hashimoto
2024-04-16 10:28:09 -07:00
parent 11c195e493
commit 981f031951

View File

@ -1917,7 +1917,7 @@ fn createPage(
self: *PageList, self: *PageList,
cap: Capacity, cap: Capacity,
) !*List.Node { ) !*List.Node {
log.debug("create page cap={}", .{cap}); // log.debug("create page cap={}", .{cap});
return try createPageExt(&self.pool, cap, &self.page_size); return try createPageExt(&self.pool, cap, &self.page_size);
} }