diff --git a/src/terminal/stream.zig b/src/terminal/stream.zig index 5f50b4925..834f07006 100644 --- a/src/terminal/stream.zig +++ b/src/terminal/stream.zig @@ -48,11 +48,11 @@ pub fn Stream(comptime Handler: type) type { //log.debug("char: {x}", .{c}); const actions = self.parser.next(c); for (actions) |action_opt| { - if (action_opt) |action| { - if (action != .print) { - log.info("action: {}", .{action}); - } - } + // if (action_opt) |action| { + // if (action != .print) { + // log.info("action: {}", .{action}); + // } + // } switch (action_opt orelse continue) { .print => |p| if (@hasDecl(T, "print")) try self.handler.print(p), .execute => |code| try self.execute(code),