From 90e28dd0f7df334e042063744d2d74da48a99831 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Wed, 11 May 2022 18:11:30 -0700 Subject: [PATCH] quiet --- src/terminal/stream.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/terminal/stream.zig b/src/terminal/stream.zig index 011c79d1d..736425c65 100644 --- a/src/terminal/stream.zig +++ b/src/terminal/stream.zig @@ -47,7 +47,7 @@ pub fn Stream(comptime Handler: type) type { //log.debug("char: {}", .{c}); const actions = self.parser.next(c); for (actions) |action_opt| { - if (action_opt) |action| log.info("action: {}", .{action}); + // if (action_opt) |action| 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),