diff options
author | 2023-06-06 23:06:37 -0700 | |
---|---|---|
committer | 2023-06-06 23:06:37 -0700 | |
commit | dba07b8675f251528b7c68fe9c6dda2fd8a98e51 (patch) | |
tree | e750f2d57ba7e6949aeea944b0d54157dba41aa3 | |
parent | 599162ce73c29eccc1bb5375a25dc748b6cb1973 (diff) | |
download | bun-dba07b8675f251528b7c68fe9c6dda2fd8a98e51.tar.gz bun-dba07b8675f251528b7c68fe9c6dda2fd8a98e51.tar.zst bun-dba07b8675f251528b7c68fe9c6dda2fd8a98e51.zip |
Remove logging
-rw-r--r-- | src/bundler/bundle_v2.zig | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/bundler/bundle_v2.zig b/src/bundler/bundle_v2.zig index bdc621bab..71c23e723 100644 --- a/src/bundler/bundle_v2.zig +++ b/src/bundler/bundle_v2.zig @@ -1355,8 +1355,6 @@ pub const BundleV2 = struct { this.graph.input_files.items(.loader)[load.source_index.get()] = code.loader; this.graph.input_files.items(.source)[load.source_index.get()].contents = code.source_code; - // print source code - debug("source code: {s}", .{ code.source_code }); var parse_task = load.parse_task; parse_task.loader = code.loader; this.free_list.append(code.source_code) catch unreachable; |