| ... | ... | @@ -110,7 +110,6 @@ pub fn execute(args: [][]u8) !void { |
| 110 | 110 | |
| 111 | 111 | if (c == '\n') { |
| 112 | 112 | try w.writeAll(realtext[start..end]); |
| 113 | | std.log.info("{s}", .{realtext[start .. end - 1]}); |
| 114 | 113 | start = end; |
| 115 | 114 | run = 0; |
| 116 | 115 | i = start; |
| ... | ... | @@ -123,7 +122,6 @@ pub fn execute(args: [][]u8) !void { |
| 123 | 122 | const n_ind = (std.mem.lastIndexOfScalar(u8, realtext[start .. end - 1], '\n') orelse end) + start; |
| 124 | 123 | const ind = std.math.min(s_ind, n_ind); |
| 125 | 124 | try w.print("{s}\n", .{realtext[start..ind]}); |
| 126 | | std.log.debug("{s}", .{realtext[start..ind]}); |
| 127 | 125 | end = ind + 1; |
| 128 | 126 | start = end; |
| 129 | 127 | run = 0; |