build: remove ts_bin_query_gen build output messages

This commit is contained in:
CJ van den Berg 2025-03-25 17:15:47 +01:00
parent a1b2737c5d
commit 0e72a714dc
Signed by: neurocyte
GPG key ID: 8EB1E1BB660E3FB9

View file

@ -43,7 +43,7 @@ pub fn main() anyerror!void {
try cbor.writeValue(writer, "highlights");
try cbor.writeValue(writer, highlights_cb);
std.log.info("file_type {s} highlights {d} bytes", .{ file_type.name, highlights_cb.len });
// std.log.info("file_type {s} highlights {d} bytes", .{ file_type.name, highlights_cb.len });
if (file_type.injections) |injections| {
const injections_in = try treez.Query.create(lang, injections);
@ -54,12 +54,12 @@ pub fn main() anyerror!void {
try cbor.writeValue(writer, "injections");
try cbor.writeValue(writer, injections_cb);
std.log.info("file_type {s} injections {d} bytes", .{ file_type.name, injections_cb.len });
// std.log.info("file_type {s} injections {d} bytes", .{ file_type.name, injections_cb.len });
}
}
try output_file.writeAll(output.items);
std.log.info("file_types total {d} bytes", .{output.items.len});
// std.log.info("file_types total {d} bytes", .{output.items.len});
}
fn fatal(comptime format: []const u8, args: anytype) noreturn {