From f8335c10d8ba2b42e07ac1498d3832187046deb0 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Sun, 3 Sep 2023 14:02:55 -0700 Subject: [PATCH] terminal: disable noisy logs --- src/terminal/stream.zig | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/terminal/stream.zig b/src/terminal/stream.zig index c922df8f4..7504f4682 100644 --- a/src/terminal/stream.zig +++ b/src/terminal/stream.zig @@ -53,10 +53,10 @@ pub fn Stream(comptime Handler: type) type { // log.debug("char: {c}", .{c}); const actions = self.parser.next(c); for (actions) |action_opt| { - if (action_opt) |action| { - if (action != .print and action == .osc_dispatch) - 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),